diff options
-rw-r--r-- | .github/workflows/format.yml | 2 | ||||
-rw-r--r-- | .github/workflows/lint.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 92caff79..42a96411 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -9,4 +9,4 @@ jobs: components: rustfmt - uses: actions/checkout@master - name: Check format - run: cargo fmt --all -- --check + run: cargo fmt --all -- --check --verbose diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 688c2087..6fd98374 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,4 +9,4 @@ jobs: components: clippy - uses: actions/checkout@master - name: Check lints - run: cargo clippy --all --all-features --no-deps + run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 433afadc..38b81842 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,8 +20,8 @@ jobs: sudo apt-get install -y libxkbcommon-dev - name: Run tests run: | - cargo test --verbose --all - cargo test --verbose --all --all-features + cargo test --verbose --workspace + cargo test --verbose --workspace --all-features web: runs-on: ubuntu-latest |