0
0
Fork 0
mirror of https://github.com/tj-actions/install-postgresql.git synced 2024-12-20 01:18:18 +00:00

Update test.yml

This commit is contained in:
Tonye Jack 2023-09-07 20:54:09 -06:00 committed by GitHub
parent d6b4e609cc
commit 356f17fc58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,8 +10,13 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest name: Test setup-postgresql
name: Test docker-action 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: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -19,3 +24,5 @@ jobs:
uses: reviewdog/action-shellcheck@v1 uses: reviewdog/action-shellcheck@v1
- name: Run docker-action - name: Run docker-action
uses: ./ uses: ./
with:
postgresql_version: ${{ matrix.postgresql_version }}