Allow custom validation for "write-test" task so one can ensure that … #595
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |