gha: replace ubuntu-latest with ubuntu-22.04 #7535
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: Lint & Test rp-storage-tool | |
| on: | |
| push: | |
| branches: [dev] | |
| paths: | |
| - 'tools/rp_storage_tool/**' | |
| - '.github/workflows/rp-storage-tool-checks.yml' | |
| tags-ignore: | |
| - '**' | |
| pull_request: | |
| paths: | |
| - 'tools/rp_storage_tool/**' | |
| - '.github/workflows/rp-storage-tool-checks.yml' | |
| jobs: | |
| check: | |
| name: Compile check | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - name: Run cargo check | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: check | |
| args: --manifest-path tools/rp_storage_tool/Cargo.toml | |
| test: | |
| name: Unit tests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| - name: Install stable toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: stable | |
| override: true | |
| - name: Run cargo test | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: test | |
| args: --manifest-path tools/rp_storage_tool/Cargo.toml |