Skip to content

Commit 4320420

Browse files
authored
Update test.yml
1 parent af3c9bf commit 4320420

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ jobs:
3636
- run: brew install postgresql@15 && brew link --overwrite postgresql@15
3737
if: runner.os == 'macOS'
3838

39+
# Windows does not come with Perl installed
40+
- if: runner.os == 'Windows'
41+
uses: shogo82148/actions-setup-perl@v1
42+
with:
43+
perl-version: '5.32'
44+
45+
- name: Install PostgreSQL (Windows)
46+
if: runner.os == 'Windows'
47+
run: |
48+
choco install postgresql --yes
49+
echo "C:\Program Files\PostgreSQL\15\bin" >> $GITHUB_PATH
50+
3951
# Workaround https://github.com/savonet/ocaml-ssl/issues/155 and/or
4052
# https://github.com/ocaml/setup-ocaml/issues/856.
4153
- run: opam pin add ssl 0.6.0 --no-action

0 commit comments

Comments
 (0)