2019-09-22 05:17:07 +00:00
|
|
|
name: test
|
|
|
|
|
|
|
|
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:
|
2021-03-30 21:48:02 +00:00
|
|
|
branches:
|
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
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
|
|
|
|
-
|
|
|
|
name: Validate
|
2022-05-06 18:58:55 +00:00
|
|
|
uses: docker/bake-action@v2
|
2020-06-15 16:36:44 +00:00
|
|
|
with:
|
2021-03-30 21:48:02 +00:00
|
|
|
targets: validate
|
2019-09-22 05:17:07 +00:00
|
|
|
-
|
|
|
|
name: Test
|
2022-05-06 18:58:55 +00:00
|
|
|
uses: docker/bake-action@v2
|
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
|