Skip to content

Commit

Permalink
meta: added CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianprelipcean committed Apr 11, 2024
1 parent 85c8632 commit 3aedb5c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: © 2024 Adrian C. Prelipcean
#
# SPDX-License-Identifier: CC0-1.0

name: CI
on: [push, pull_request]

jobs:
test:
strategy:
matrix:
pg:
- 16
- 15
- 14
- 13
- 12
- 11
- 10

name: PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- name: Start PostgreSQL ${{ matrix.pg }}
run: pg-start ${{ matrix.pg }}
- name: Check out the repo
uses: actions/checkout@v4
- name: Test on PostgreSQL ${{ matrix.pg }}
run: pg-build-test

0 comments on commit 3aedb5c

Please sign in to comment.