0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00
install-postgresql/.github/workflows/test.yml
2023-09-07 20:54:09 -06:00

28 lines
627 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test setup-postgresql
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest, macos-11, windows-2022]
postgresql_version: [10, 11, 12, 14, 15]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: shellcheck
uses: reviewdog/action-shellcheck@v1
- name: Run docker-action
uses: ./
with:
postgresql_version: ${{ matrix.postgresql_version }}