2019-09-22 05:17:07 +00:00
|
|
|
name: test
|
|
|
|
|
2023-05-07 11:32:12 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2019-09-22 05:17:07 +00:00
|
|
|
on:
|
|
|
|
push:
|
2019-10-04 14:23:35 +00:00
|
|
|
branches:
|
2021-03-30 21:48:02 +00:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2020-05-10 14:24:22 +00:00
|
|
|
pull_request:
|
2019-09-22 05:17:07 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-03-30 21:48:02 +00:00
|
|
|
test:
|
2020-11-22 22:34:12 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2022-03-02 06:26:51 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-11-22 22:34:12 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2019-09-22 05:17:07 +00:00
|
|
|
-
|
|
|
|
name: Test
|
2023-04-20 17:07:56 +00:00
|
|
|
uses: docker/bake-action@v3
|
2021-03-30 21:48:02 +00:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-05-07 09:47:49 +00:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2022-04-06 12:32:26 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2020-05-07 09:47:49 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|