2020-08-16 20:32:27 -04:00
|
|
|
name: test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-03-28 10:43:51 -04:00
|
|
|
- 'master'
|
2020-08-16 20:32:27 -04:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-03-28 10:43:51 -04:00
|
|
|
- 'master'
|
2020-08-16 20:32:27 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-17 04:06:56 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-08-16 20:32:27 -04:00
|
|
|
-
|
2021-03-28 10:43:51 -04:00
|
|
|
name: Validate
|
|
|
|
uses: docker/bake-action@v1
|
|
|
|
with:
|
|
|
|
targets: validate
|
2020-08-16 20:32:27 -04:00
|
|
|
-
|
|
|
|
name: Test
|
2021-03-28 10:43:51 -04:00
|
|
|
uses: docker/bake-action@v1
|
|
|
|
with:
|
|
|
|
targets: test
|
2020-09-08 17:34:53 -04:00
|
|
|
-
|
|
|
|
name: Upload coverage
|
2021-07-23 02:18:38 -04:00
|
|
|
uses: codecov/codecov-action@v2
|
2020-09-08 17:34:53 -04:00
|
|
|
with:
|
|
|
|
file: ./coverage/clover.xml
|