Skip to content

Bump dashmap from 5.5.3 to 6.1.0 #2584

Bump dashmap from 5.5.3 to 6.1.0

Bump dashmap from 5.5.3 to 6.1.0 #2584

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore: ["docs/**", "README.md"]
pull_request:
branches: [main]
paths-ignore: ["docs/**", "README.md"]
jobs:
test_all:
name: Test
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
args: ["--no-default-features --features trace,websocket,redb"]
env:
FREENET_LOG: error
CARGO_TARGET_DIR: ${{ github.workspace }}/target
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- name: Install stdlib packages
working-directory: stdlib/typescript
run: npm run dev.package
- name: Build
run: |
cargo build --locked
cargo install --path ./crates/core
cargo install --path ./crates/fdev
- name: Test - features
run: cargo test --workspace ${{ matrix.args }}
clippy_check:
name: Clippy
runs-on: ubuntu-latest
env:
FREENET_LOG: error
CARGO_TARGET_DIR: ${{ github.workspace }}/target
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- uses: Swatinem/rust-cache@v2
- name: clippy
run: cargo clippy -- -D warnings
fmt_check:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Check code formatting
run: cargo fmt -- --check