2023-02-19 21:57:26 +01:00
|
|
|
name: test
|
|
|
|
|
2023-09-05 08:58:18 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-02-19 21:57:26 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 08:04:01 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-02-19 21:57:26 +01:00
|
|
|
-
|
|
|
|
name: Test
|
2023-09-13 08:26:45 +02:00
|
|
|
uses: docker/bake-action@v4
|
2023-02-19 21:57:26 +01:00
|
|
|
with:
|
|
|
|
targets: test
|
|
|
|
-
|
|
|
|
name: Upload coverage
|
|
|
|
uses: codecov/codecov-action@v3
|
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|