mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
29 lines
552 B
YAML
29 lines
552 B
YAML
|
name: "test"
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths-ignore:
|
||
|
- "**.md"
|
||
|
- ".github/**"
|
||
|
- "!.github/workflows/tests.yml"
|
||
|
- "!.github/workflows/run-tests.yml"
|
||
|
push:
|
||
|
branches:
|
||
|
- "master"
|
||
|
paths-ignore:
|
||
|
- "**.md"
|
||
|
- ".github/**"
|
||
|
- "!.github/workflows/tests.yml"
|
||
|
- "!.github/workflows/run-tests.yml"
|
||
|
|
||
|
concurrency:
|
||
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
name: "aqua"
|
||
|
uses: ./.github/workflows/tests.yml
|
||
|
with:
|
||
|
ref: ${{ github.ref }}
|