mirror of
https://github.com/eliasstepanik/big_space_with_trim.git
synced 2026-01-13 07:38:28 +00:00
15 lines
349 B
YAML
15 lines
349 B
YAML
name: test suite
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
name: cargo test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: cargo fmt
|
|
- run: cargo check --all-targets --all-features
|
|
- run: cargo clippy --all-targets
|
|
- run: cargo test --all-targets
|