Skip to content

chore: update ic.did from portal repo #8142

chore: update ic.did from portal repo

chore: update ic.did from portal repo #8142

Workflow file for this run

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@v6
if: github.event_name == 'push'
- uses: dorny/paths-filter@v4
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-24.04, ubuntu-24.04-arm, macos-15 ]
steps:
- uses: actions/checkout@v6
# Remove pre-installed stable toolchain so it doesn't pollute the
# rust-cache environment hash. macOS (and sometimes Linux) runner
# images ship with varying stable versions, making the hash
# non-deterministic and causing constant cache misses.
- name: Remove pre-installed Rust stable toolchain
run: rustup toolchain remove stable 2>/dev/null || true
# This step also handles Rust-specific caching
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
cache-shared-key: debug
- 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