Skip to content

Commit

Permalink
chore(ci): enable linting
Browse files Browse the repository at this point in the history
  • Loading branch information
estensen committed Nov 26, 2024
1 parent d3363ea commit bc958ba
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/bolt_boost_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
with:
cache-on-failure: true

- name: Build
run: cargo build

- name: Lint Code with Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/bolt_cli_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
with:
cache-on-failure: true

- name: Build
run: cargo build

- name: Lint Code with Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/bolt_sidecar_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
with:
cache-on-failure: true

- name: Build
run: cargo build

- name: Lint Code with Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v3
with:
Expand Down

0 comments on commit bc958ba

Please sign in to comment.