Skip to content

fix(deps): update rust crate adblock to ^0.10.0 #45

fix(deps): update rust crate adblock to ^0.10.0

fix(deps): update rust crate adblock to ^0.10.0 #45

Workflow file for this run

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