Skip to content

Bump the all group across 1 directory with 11 updates #40

Bump the all group across 1 directory with 11 updates

Bump the all group across 1 directory with 11 updates #40

Workflow file for this run

name: PR
on:
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --all
- name: Run tests
run: cargo test --all -- --show-output
- name: Check formatting
run: cargo fmt --all -- --check