import-gpg/.github/workflows/test.yml

31 lines
533 B
YAML
Raw Normal View History

2020-05-03 21:09:41 +02:00
name: test
2023-05-06 23:46:50 +02:00
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-05-03 21:09:41 +02:00
on:
push:
branches:
- 'master'
- 'releases/v*'
2020-05-07 20:57:28 +02:00
pull_request:
2020-05-03 21:09:41 +02:00
jobs:
test:
runs-on: ubuntu-latest
2020-05-03 21:09:41 +02:00
steps:
-
name: Checkout
uses: actions/checkout@v3
2020-05-03 21:09:41 +02:00
-
name: Test
uses: docker/bake-action@v3
with:
targets: test
2020-05-06 18:00:13 +02:00
-
name: Upload coverage
uses: codecov/codecov-action@v3
2020-05-06 18:00:13 +02:00
with:
file: ./coverage/clover.xml