Skip to content

Allow custom validation for "write-test" task so one can ensure that … #595

Allow custom validation for "write-test" task so one can ensure that …

Allow custom validation for "write-test" task so one can ensure that … #595

Workflow file for this run

name: CI
on: ['push', 'release']
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docker:
name: 'Run docker image building'
uses: ./.github/workflows/job-docker.yml
lint:
name: 'Lint the repository'
uses: ./.github/workflows/job-lint.yml
test:
name: 'Run tests and lint artifacts'
needs:
- docker
- lint
strategy:
fail-fast: false # Run the whole matrix for maximum information. No matter if we fail with one job early.
matrix:
os:
- 'macOS-latest'
- 'ubuntu-latest'
- 'windows-latest'
uses: ./.github/workflows/job-test.yml
with:
os: ${{ matrix.os }}