metadata-action/.github/workflows/test.yml

31 lines
533 B
YAML
Raw Normal View History

2020-10-25 03:21:46 +01:00
name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2020-10-25 03:21:46 +01:00
on:
push:
branches:
- 'master'
- 'releases/v*'
pull_request:
jobs:
test:
2020-10-25 15:36:42 +01:00
runs-on: ubuntu-latest
2020-10-25 03:21:46 +01:00
steps:
-
name: Checkout
uses: actions/checkout@v4
2020-10-25 03:21:46 +01:00
-
name: Test
uses: docker/bake-action@v4
with:
targets: test
2020-10-25 03:21:46 +01:00
-
name: Upload coverage
uses: codecov/codecov-action@v3
2020-10-25 03:21:46 +01:00
with:
file: ./coverage/clover.xml