Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
tjgreen42 committed Nov 13, 2024
1 parent 406d323 commit f0d33b2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Verify formatting
run: cd pgvectorscale && cargo fmt --check

- name: Check failure
if: failure()
run: |
echo "Failure in fmt check, cargo version is"
cargo --version
- name: Formatting check failure
if: failure()
run: |
echo "Failure in fmt check, cargo version is"
cargo --version
clippy-check:
runs-on: ubuntu-latest
Expand All @@ -37,9 +37,9 @@ jobs:
- name: Clippy check
run: cd pgvectorscale && cargo clippy --all-targets --all-features

- name: Check failure
- name: Clippy check failure
if: failure()
run: |
echo "Failure in clippy-check, cargo version is"
echo "Failure in clippy check, cargo version is"
cargo --version

0 comments on commit f0d33b2

Please sign in to comment.