feat(analyses): compute analyses in transformed scale space #2201
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| tags: | |
| - '*' | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| formatting: | |
| uses: ./.github/workflows/_formatting.yml | |
| test: | |
| uses: ./.github/workflows/_test.yml | |
| secrets: inherit | |
| docs: | |
| uses: ./.github/workflows/_docs.yml | |
| secrets: inherit | |
| finalize: | |
| name: CI result | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: [formatting, test, docs] | |
| steps: | |
| - run: | | |
| results='${{ toJSON(needs.*.result) }}' | |
| echo "Job results: $results" | |
| if echo "$results" | grep -qE '"(failure|cancelled)"'; then | |
| echo "Some required jobs failed or were cancelled" | |
| exit 1 | |
| fi |