2020-08-17 02:32:27 +02:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-28 16:43:51 +02:00
|
|
|
- 'master'
|
2020-08-17 02:32:27 +02:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-03-28 16:43:51 +02:00
|
|
|
- 'master'
|
2020-08-17 02:32:27 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2022-03-02 12:03:44 +01:00
|
|
|
uses: actions/checkout@v3
|
2020-08-17 02:32:27 +02:00
|
|
|
-
|
2021-03-28 16:43:51 +02:00
|
|
|
name: Validate
|
2022-05-05 19:24:32 +02:00
|
|
|
uses: docker/bake-action@v2
|
2021-03-28 16:43:51 +02:00
|
|
|
with:
|
|
|
|
targets: validate
|
2020-08-17 02:32:27 +02:00
|
|
|
-
|
|
|
|
name: Test
|
2022-05-05 19:24:32 +02:00
|
|
|
uses: docker/bake-action@v2
|
2021-03-28 16:43:51 +02:00
|
|
|
with:
|
|
|
|
targets: test
|
2020-09-08 23:34:53 +02:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2022-04-06 13:03:02 +02:00
|
|
|
uses: codecov/codecov-action@v3
|
2020-09-08 23:34:53 +02:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|