Skip to content

fix cc invocations to use provided methods #145

fix cc invocations to use provided methods

fix cc invocations to use provided methods #145

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
check_libfuzzer_checkout:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Re-vendor libfuzzer
run: ./update-libfuzzer.sh
- name: Check that nothing changed
run: git diff --exit-code
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nightly Rust
run: |
rustup toolchain install nightly
rustup default nightly
- name: Check rustfmt
run: |
rustup component add rustfmt --toolchain stable
cargo +stable fmt --all -- --check
- run: cargo install cargo-fuzz
- name: Run tests
run: ./ci/script.sh