chore: update replica version to 3b685346 #8095
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 | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # When getting Rust dependencies, retry on network error: | |
| CARGO_NET_RETRY: 10 | |
| # Use the local .curlrc | |
| CURL_HOME: . | |
| # Disable DFX telemetry | |
| DFX_TELEMETRY: 'off' | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| outputs: | |
| sources: ${{ steps.filter.outputs.sources }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| if: github.event_name == 'push' | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| sources: | |
| - .github/workflows/lint.yml | |
| - src/** | |
| - Cargo.lock | |
| - Cargo.toml | |
| - rust-toolchain.toml | |
| test: | |
| name: lint | |
| if: needs.changes.outputs.sources == 'true' | |
| needs: changes | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest, ubuntu-24.04-arm, macos-14, macos-14-large, windows-latest ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Run Lint | |
| run: cargo clippy --verbose --tests --benches --workspace -- -D warnings | |
| env: | |
| RUST_BACKTRACE: 1 | |
| aggregate: | |
| name: lint:required | |
| if: always() && needs.changes.outputs.sources == 'true' | |
| needs: [changes, test] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: check step result directly | |
| if: ${{ needs.test.result != 'success' }} | |
| run: exit 1 |