Skip to content

chore(deps): bump crossbeam-utils from 0.8.5 to 0.8.16 #200

chore(deps): bump crossbeam-utils from 0.8.5 to 0.8.16

chore(deps): bump crossbeam-utils from 0.8.5 to 0.8.16 #200

Workflow file for this run

name: CI
on: push
env:
CARGO_TERM_COLOR: always
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --verbose
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- uses: Swatinem/rust-cache@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run tests
run: cargo test --verbose