sdk%fix(ci): narrow CodeQL cache, place 100 commit limit per PR, update codecov scope, restore MSRV artifact caching, try to fix false-fail due to concurrent runs #38
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: "dash-types" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - pkgs/types/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_types.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| pull_request: | |
| paths: | |
| - pkgs/types/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - .github/workflows/pkg_types.yml | |
| - .github/workflows/build_stable.yml | |
| - .github/workflows/build_nightly.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| stable: | |
| uses: ./.github/workflows/build_stable.yml | |
| with: | |
| package: dash-types | |
| package_dir: types | |
| nightly: | |
| uses: ./.github/workflows/build_nightly.yml | |
| with: | |
| package: dash-types | |
| package_dir: types | |
| secrets: inherit |