Merge fir
into master
.
#576
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
pg: [13, 14] | |
name: 🐘 PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
steps: | |
- name: Install deps | |
run: | | |
sudo apt update | |
apt-get install -y jq | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Check format | |
uses: DoozyX/clang-format-lint-action@v0.13 | |
with: | |
source: './pg_diffix ./src' | |
clangFormatVersion: 12 | |
- name: Start PostgreSQL ${{ matrix.pg }} | |
run: pg-start ${{ matrix.pg }} | |
- name: Test on PostgreSQL ${{ matrix.pg }} | |
run: pg-build-test |