mirror of
https://framagit.org/veretcle/tootube.git
synced 2025-12-06 00:23:16 +01:00
21 lines
412 B
YAML
21 lines
412 B
YAML
---
|
|
|
|
name: rust-check
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
- push
|
|
|
|
jobs:
|
|
rust-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: "clippy,rustfmt"
|
|
- run: cargo fmt -- --check
|
|
- run: cargo check
|
|
- run: cargo clippy -- -D warnings
|
|
- run: cargo test
|
|
- run: cargo build
|