Skip to content

Bump walkdir from 2.4.0 to 2.5.0 #171

Bump walkdir from 2.4.0 to 2.5.0

Bump walkdir from 2.4.0 to 2.5.0 #171

Workflow file for this run

name: Rust
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --locked --verbose
- name: Run tests
run: cargo test --verbose
- name: Check formatting
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy --all-targets -- -D warnings