aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index ef30d2d..b343e63 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
- run: cargo build --all --verbose
+ run: cargo build --verbose
- name: Run tests
- run: cargo test --all --verbose
+ run: cargo test --verbose
- name: Run clippy
- run: cargo clippy --all -- -D warnings
+ run: cargo clippy -- -D warnings
- name: Run fmt
- run: cargo fmt --all -- --check
+ run: cargo fmt -- --check