2020-08-21 12:45:16 +00:00
|
|
|
name: test
|
|
|
|
|
2023-09-05 09:00:45 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-08-21 12:45:16 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-31 16:34:44 +00:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2020-08-21 12:45:16 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2021-03-31 16:34:44 +00:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-21 12:45:16 +00:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2023-09-05 05:39:46 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-08-21 12:45:16 +00:00
|
|
|
-
|
|
|
|
name: Test
|
2024-06-18 05:46:15 +00:00
|
|
|
uses: docker/bake-action@v5
|
2021-03-31 16:34:44 +00:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-08-21 12:45:16 +00:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2024-02-23 08:00:01 +00:00
|
|
|
uses: codecov/codecov-action@v4
|
2020-08-21 12:45:16 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|
2024-02-23 08:00:01 +00:00
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|