fix: #1596 restructure all test folders to match the library they test so it is … #390
Workflow file for this run
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 (PR) | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
dci-lint: | |
uses: ./.github/workflows/dci.yml | |
unit-tests: | |
uses: ./.github/workflows/unit-tests.yml | |
needs: dci-lint | |
coverage: | |
uses: ./.github/workflows/coverage.yml | |
needs: unit-tests | |
integration-tests: | |
uses: ./.github/workflows/integration-tests.yml | |
needs: unit-tests |