Fix: add obfuscation handling for dependencies in ColumnDepends (#4072) #1638
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: checks | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| clippy: | |
| runs-on: ubuntu-latest | |
| name: "Check & Clippy" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@master | |
| id: toolchain | |
| with: | |
| # If this version is old enough to cause errors, or older than the | |
| # TaskChampion MSRV, bump it to the MSRV of the currently-required | |
| # TaskChampion package; if necessary, bump that version as well. | |
| toolchain: "1.88.0" # MSRV | |
| - name: Cache cargo registry | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.cargo/registry | |
| key: ${{ runner.os }}-cargo-registry-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Cache cargo build | |
| uses: actions/cache@v5 | |
| with: | |
| path: target | |
| key: ${{ runner.os }}-cargo-build-target-${{ steps.toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.lock') }} | |
| - uses: actions-rs/cargo@v1.0.3 | |
| with: | |
| command: check | |
| - run: rustup component add clippy | |
| - uses: actions-rs/clippy-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --all-features | |
| name: "Clippy Results" | |
| fmt: | |
| runs-on: ubuntu-latest | |
| name: "Formatting" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@master | |
| id: toolchain | |
| with: | |
| toolchain: "stable" | |
| components: "rustfmt" | |
| - uses: actions-rs/cargo@v1.0.3 | |
| with: | |
| command: fmt | |
| args: --all -- --check | |
| cargo-metadata: | |
| runs-on: ubuntu-latest | |
| name: "Cargo Metadata" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@master | |
| id: toolchain | |
| with: | |
| toolchain: "stable" | |
| components: "rustfmt" | |
| - name: "Check metadata" | |
| run: ".github/workflows/metadata-check.sh" |