Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpursley committed Oct 31, 2024
1 parent 4552014 commit 1aec3e3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ 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 @@ -45,10 +46,16 @@ 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

0 comments on commit 1aec3e3

Please sign in to comment.