Skip to content

Commit

Permalink
Fix clippy features issue
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpursley committed Oct 31, 2024
1 parent 1aec3e3 commit 16856a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ jobs:
strategy:
matrix:
PG_VERSION: [pg14, pg15, pg16, pg17]
env:
PG_VERSION: ${{ matrix.PG_VERSION }}
steps:
- name: Print Environment
run: env

- name: Checkout
uses: actions/checkout@v4

Expand All @@ -46,16 +45,10 @@ jobs:
key: ${{ runner.os }}-${{ matrix.PG_VERSION }}-pgrx

- name: Init
env:
PG_VERSION: ${{ matrix.PG_VERSION }}
run: make init

- name: Lint
env:
PG_VERSION: ${{ matrix.PG_VERSION }}
run: make lint

- name: Test
env:
PG_VERSION: ${{ matrix.PG_VERSION }}
run: make test
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ init:
.PHONY: lint
lint:
@cargo fmt --check
@cargo clippy
@cargo clippy --no-default-features --features $(PG_VERSION)

.PHONY: test
test:
Expand Down

0 comments on commit 16856a9

Please sign in to comment.