Skip to content

chore(deps): bump the actions group with 2 updates #76

chore(deps): bump the actions group with 2 updates

chore(deps): bump the actions group with 2 updates #76

Workflow file for this run

name: Rust
on:
pull_request:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint
run: cargo clippy --all-targets -- -D warnings
- uses: actions-rust-lang/rustfmt@v1