2023-04-05 12:28:51 +00:00
|
|
|
name: "test"
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
- ".github/**"
|
|
|
|
- "!.github/workflows/tests.yml"
|
|
|
|
- "!.github/workflows/run-tests.yml"
|
|
|
|
push:
|
|
|
|
branches:
|
2023-04-15 08:28:57 +00:00
|
|
|
- "main"
|
2023-04-05 12:28:51 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
- ".github/**"
|
|
|
|
- "!.github/workflows/tests.yml"
|
|
|
|
- "!.github/workflows/run-tests.yml"
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-06-22 11:59:56 +00:00
|
|
|
sbt-tests:
|
|
|
|
name: "aqua"
|
|
|
|
uses: ./.github/workflows/sbt-tests.yml
|
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
|
|
|
|
2023-04-05 12:28:51 +00:00
|
|
|
tests:
|
|
|
|
name: "aqua"
|
|
|
|
uses: ./.github/workflows/tests.yml
|
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|