Skip to content

chore(deps): update rust crate num-derive to 0.4.2 - autoclosed #75

chore(deps): update rust crate num-derive to 0.4.2 - autoclosed

chore(deps): update rust crate num-derive to 0.4.2 - autoclosed #75

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nightly
run: rustup install nightly
- name: Install cargo-fuzz
run: cargo install cargo-fuzz
- name: Format
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build fuzz tests
run: cargo +nightly fuzz build
- name: Lint
run: cargo clippy -- -Dwarnings