Skip to content

Commit

Permalink
MR Nit fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
lseelenbinder committed Sep 20, 2024
1 parent e98b93f commit 6e554f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- uses: taiki-e/install-action@v2
with: { tool: just }
- uses: Swatinem/rust-cache@v2
if: github.event_name != 'release' && github.event_name != 'workflow_dispatch'

Expand Down
12 changes: 6 additions & 6 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ fmt-nightly:

# Run cargo clippy
clippy: _add_tools
cargo clippy --features http-async
cargo clippy --features mmap-async-tokio
cargo clippy --features tilejson
cargo clippy --features s3-async-native
cargo clippy --features s3-async-rustls
cargo clippy --features aws-s3-async
cargo clippy --workspace --all-targets --features http-async
cargo clippy --workspace --all-targets --features mmap-async-tokio
cargo clippy --workspace --all-targets --features tilejson
cargo clippy --workspace --all-targets --features s3-async-native
cargo clippy --workspace --all-targets --features s3-async-rustls
cargo clippy --workspace --all-targets --features aws-s3-async

# Build and open code documentation
docs:
Expand Down

0 comments on commit 6e554f3

Please sign in to comment.