Bump certifi from 2023.7.22 to 2024.7.4 in /docs #1
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: Tests | |
on: | |
push: | |
# This should disable running the workflow on tags, according to the | |
# on.<push|pull_request>.<branches|tags> GitHub Actions docs. | |
branches: | |
- "*" | |
pull_request: | |
concurrency: | |
# Cancel older requests of the same workflow in the same branch. | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
strategy: | |
fail-fast: false | |
matrix: | |
pg: [16, 15, 14, 13, 12, 11, 10] | |
steps: | |
- name: Start PostgreSQL ${{ matrix.pg }} | |
run: pg-start ${{ matrix.pg }} libgmp-dev | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Test on PostgreSQL ${{ matrix.pg }} | |
run: pg-build-test |