Container dev workflow (#139)

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2021-03-27 17:45:19 +01:00
committed by GitHub
parent 228b9aebd5
commit 925acc7207
8 changed files with 156 additions and 45 deletions

View File

@@ -3,15 +3,37 @@ name: test
on:
push:
branches:
- master
- releases/v*
- 'master'
- 'releases/v*'
paths-ignore:
- '**.md'
pull_request:
branches:
- 'master'
- 'releases/v*'
paths-ignore:
- '**.md'
jobs:
test-containerized:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Validate
uses: docker/bake-action@v1
with:
targets: validate
-
name: Test
uses: docker/bake-action@v1
with:
targets: test
test:
runs-on: ${{ matrix.os }}
strategy:
@@ -35,5 +57,4 @@ jobs:
uses: codecov/codecov-action@v1
if: success()
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/clover.xml