From 7b7059420711d81aaf957aa91aaeff069b07870b Mon Sep 17 00:00:00 2001 From: Ildar Musin Date: Tue, 1 Dec 2020 17:14:56 +0100 Subject: [PATCH] Add a simple Github Actions script --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..95135f0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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 +