Skip to content

Commit

Permalink
Add a simple Github Actions script
Browse files Browse the repository at this point in the history
  • Loading branch information
zilder committed Dec 2, 2020
1 parent 47edaa2 commit 7b70594
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches: ['*']
pull_request:
branches: ['*']

jobs:
test:
strategy:
fail-fast: false
matrix:
pg: [13, 12, 11, 10, 9.6, 9.5]
name: PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: zilder/pg-ext-check
steps:
- run: pg-setup ${{ matrix.pg }}
- run: apt-get -y install libicu-dev
- uses: actions/checkout@v2
- run: build-check

0 comments on commit 7b70594

Please sign in to comment.