Skip to content

Commit d42413a

Browse files
committed
Add support for Win 2019, Ubuntu 20.04 & macOS 11
In order to make sure this action works correctly on other non-latest OS-es, we have to add those non-latest OS-es to the testing matrix.
1 parent ca880f6 commit d42413a

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ jobs:
1414
strategy:
1515
matrix:
1616
os:
17-
- ubuntu-latest
18-
- windows-latest
19-
- macos-latest
20-
- macos-13
21-
- macos-14
17+
# - ubuntu-22.04
18+
# - ubuntu-20.04
19+
# - windows-2022
20+
- windows-2019
21+
# - macos-11
22+
# - macos-12
23+
# - macos-13
24+
# - macos-14
2225
steps:
2326
- uses: actions/checkout@v4
2427

action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,11 @@ runs:
5959
fi
6060
shell: bash
6161

62+
- name: Debug
63+
uses: mxschmitt/action-tmate@v3
64+
with:
65+
limit-access-to-actor: false
66+
6267
- name: Setup and start PostgreSQL
6368
run: |
6469
export PGDATA="$RUNNER_TEMP/pgdata"

0 commit comments

Comments
 (0)