change spec url in pgxn meta file #129
Workflow file for this run
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: | |
push: | |
paths-ignore: | |
- '*.md' | |
- '*.json' | |
- 'NEWS' | |
- 'LICENSE' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- '*.json' | |
- 'NEWS' | |
- 'LICENSE' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
pg: [16,15,14,13,12,11] | |
name: 🐘 PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
steps: | |
- name: Prepare environment | |
run: sudo apt-get update && sudo apt-get install -y make gcc libxml2-dev libcurl4-openssl-dev | |
- name: Start PostgreSQL ${{ matrix.pg }} | |
run: pg-start ${{ matrix.pg }} | |
- uses: actions/checkout@v2 | |
- name: Build and Regression Tests | |
run: pg-build-test |