2020-05-03 15:09:41 -04:00
|
|
|
name: test
|
|
|
|
|
2023-05-06 17:46:50 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-05-03 15:09:41 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-30 14:00:40 -04:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2020-05-07 14:57:28 -04:00
|
|
|
pull_request:
|
2020-05-03 15:09:41 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2021-03-30 14:00:40 -04:00
|
|
|
runs-on: ubuntu-latest
|
2020-05-03 15:09:41 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2022-03-02 01:26:02 -05:00
|
|
|
uses: actions/checkout@v3
|
2020-05-03 15:09:41 -04:00
|
|
|
-
|
|
|
|
name: Test
|
2023-04-19 00:56:51 -04:00
|
|
|
uses: docker/bake-action@v3
|
2021-03-30 14:00:40 -04:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-05-06 12:00:13 -04:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2022-04-06 05:37:26 -04:00
|
|
|
uses: codecov/codecov-action@v3
|
2020-05-06 12:00:13 -04:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|