We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af3c9bf commit 4320420Copy full SHA for 4320420
.github/workflows/test.yml
@@ -36,6 +36,18 @@ jobs:
36
- run: brew install postgresql@15 && brew link --overwrite postgresql@15
37
if: runner.os == 'macOS'
38
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
51
# Workaround https://github.com/savonet/ocaml-ssl/issues/155 and/or
52
# https://github.com/ocaml/setup-ocaml/issues/856.
53
- run: opam pin add ssl 0.6.0 --no-action
0 commit comments