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

32 lines
579 B
YAML
Raw Permalink 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@v4
2020-05-03 21:09:41 +02:00
-
name: Test
uses: docker/bake-action@v5
with:
targets: test
2020-05-06 18:00:13 +02:00
-
name: Upload coverage
2024-04-08 09:35:36 +02:00
uses: codecov/codecov-action@v4
2020-05-06 18:00:13 +02:00
with:
file: ./coverage/clover.xml
2024-04-08 09:35:36 +02:00
token: ${{ secrets.CODECOV_TOKEN }}