fix(deps): update rust crate adblock to ^0.10.0 #45
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: CI | |
| on: [push] | |
| jobs: | |
| ci: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| rust: [stable] | |
| include: | |
| - os: ubuntu-latest | |
| target: Linux | |
| - os: macos-latest | |
| target: Macos | |
| - os: windows-latest | |
| target: Windows | |
| env: | |
| # Deny warnings for all steps | |
| RUSTFLAGS: --deny warnings | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
| - name: Build 'pagegraph' package | |
| run: cargo build -p pagegraph | |
| - name: Build 'pagegraph-cli' package | |
| run: cargo build -p pagegraph-cli | |
| - name: Audit dependencies | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| cargo install --force cargo-audit | |
| cargo generate-lockfile | |
| cargo audit | |
| # broken for now 😭 | |
| #- name: Run tests | |
| # run: cargo test |