polishing
All checks were successful
Rust / build (push) Successful in 1m58s

This commit is contained in:
PurpleCow 2025-05-22 04:31:25 +02:00
parent 6e2e87c1dc
commit fd50d22ad4
4 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
name: Rust
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
name: Check format
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: Run clippy
with:
command: clippy
args: --all-targets --locked -- -D warnings
- uses: actions-rs/cargo@v1
name: Run tests
with:
command: test