Skip to content

deps: update dirs requirement from 5.0.1 to 6.0.0 #11

deps: update dirs requirement from 5.0.1 to 6.0.0

deps: update dirs requirement from 5.0.1 to 6.0.0 #11

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --workspace --verbose
- run: cargo test --workspace --verbose
- run: cargo fmt -- --check