This repository was archived by the owner on Apr 3, 2026. It is now read-only.
CI Utils :: script: add recipes that can iterate over all sub-repos (#8) * script: add clean-all recipe * script: add full-check-all and full-write-all recipes build: add prefer_compact to foundry base config #11
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: Utils" | |
| run-name: "CI Utils :: ${{ github.event.head_commit.message || github.event.pull_request.title }}" | |
| concurrency: | |
| cancel-in-progress: true | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| - "staging" | |
| paths: &on_paths | |
| - ".github/workflows/ci-utils.yml" | |
| - ".github/workflows/shared-*.yml" | |
| - "utils/**" | |
| - "foundry.toml" | |
| - "justfile" | |
| - "package.json" | |
| # pull_request: | |
| # paths: *on_paths | |
| jobs: | |
| build: | |
| secrets: inherit | |
| uses: ./.github/workflows/shared-build.yml | |
| with: | |
| workspace: utils | |
| test-integration: | |
| needs: build | |
| if: needs.build.outputs.cache-status != 'primary' | |
| secrets: inherit | |
| uses: ./.github/workflows/shared-test.yml | |
| with: | |
| workspace: utils | |
| test-type: integration | |
| test-fork: | |
| needs: build | |
| if: needs.build.outputs.cache-status != 'primary' | |
| secrets: inherit | |
| uses: ./.github/workflows/shared-test.yml | |
| with: | |
| workspace: utils | |
| test-type: fork | |
| test-coverage: | |
| needs: build | |
| if: needs.build.outputs.cache-status != 'primary' | |
| secrets: inherit | |
| uses: ./.github/workflows/shared-test.yml | |
| with: | |
| workspace: utils | |
| test-type: coverage |