docs: forjar platform specification (15 components, 42 phases) #2
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
| # Minimum Supported Rust Version verification | |
| # Ensures the crate compiles on the declared rust-version from Cargo.toml | |
| name: MSRV Check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: msrv-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| msrv: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install MSRV toolchain | |
| # rust: 1.88.0 | |
| run: | | |
| rustup toolchain install 1.88.0 --profile minimal | |
| rustup override set 1.88.0 | |
| - name: Cache cargo | |
| uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: msrv-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Verify MSRV compiles | |
| run: cargo check --all-targets |