diff options
author | hozan23 <hozan23@proton.me> | 2023-11-18 00:55:26 +0300 |
---|---|---|
committer | hozan23 <hozan23@proton.me> | 2023-11-18 00:55:26 +0300 |
commit | 0d6c8ad2ed66ff7bd1078be9ea7b582262a12d86 (patch) | |
tree | 8cac7bb44f76d12e5d0cbc33986fe17c73d12080 /.github/workflows | |
parent | ce82eb571b0f48a59f3a94cf61af9ccd1beea438 (diff) |
github/workflows: remove `--all` flag
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/rust.yml | 8 |
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 |