Skip to content

Commit

Permalink
ci yml cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Dec 4, 2023
1 parent c7eeaf8 commit 6228450
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ env:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./command
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --manifest-path command/Cargo.toml
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --manifest-path command/Cargo.toml
run: cargo test --verbose
- name: Clippy
run: cargo clippy --all -- -D warnings
- name: Check formatting
run: cargo fmt --manifest-path command/Cargo.toml -- --check
run: cargo fmt -- --check

0 comments on commit 6228450

Please sign in to comment.