Skip to content

Commit

Permalink
ci: fix action commands
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Sep 3, 2023
1 parent fce70c7 commit a33c9f6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cd lila-docker-rs
- name: Build
run: cargo build --verbose
run: cargo build --verbose --manifest-path lila-docker-rs/Cargo.toml
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --manifest-path lila-docker-rs/Cargo.toml
- name: Check formatting
run: cargo fmt -- --check
run: cargo fmt --manifest-path lila-docker-rs/Cargo.toml -- --check

0 comments on commit a33c9f6

Please sign in to comment.