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:
parent
d6b4e609cc
commit
356f17fc58
1 changed files with 9 additions and 2 deletions
11
.github/workflows/test.yml
vendored
11
.github/workflows/test.yml
vendored
|
@ -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 }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue