2023-02-19 20:57:26 +00:00
|
|
|
name: test
|
|
|
|
|
2023-09-05 06:58:18 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-02-19 20:57:26 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Test
|
2025-01-08 12:12:39 +00:00
|
|
|
uses: docker/bake-action@v6
|
2023-02-19 20:57:26 +00:00
|
|
|
with:
|
|
|
|
targets: test
|
|
|
|
-
|
|
|
|
name: Upload coverage
|
2024-11-15 06:35:34 +00:00
|
|
|
uses: codecov/codecov-action@v5
|
2023-02-19 20:57:26 +00:00
|
|
|
with:
|
2025-01-08 08:29:31 +00:00
|
|
|
files: ./coverage/clover.xml
|
2024-02-23 08:21:42 +00:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|