File tree Expand file tree Collapse file tree 4 files changed +24
-5
lines changed Expand file tree Collapse file tree 4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Set update schedule for GitHub Actions
2
+
3
+ version : 2
4
+ updates :
5
+
6
+ - package-ecosystem : " github-actions"
7
+ directory : " /"
8
+ schedule :
9
+ # Check for updates to GitHub Actions every week
10
+ interval : " weekly"
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ case " $( uname -s) " in
4
+ Linux* ) sudo apt install postgresql;;
5
+ Darwin* ) brew install postgresql openssl;;
6
+ esac
Original file line number Diff line number Diff line change 19
19
with :
20
20
cabal-file : servant/servant.cabal
21
21
ubuntu-version : " latest"
22
- macos-version : " latest"
23
22
version : 0.1.7.0
24
23
tests :
25
24
name : ${{ matrix.ghc }} on ${{ matrix.os }}
29
28
matrix : ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
30
29
steps :
31
30
- uses : actions/checkout@v2
32
-
33
- - uses : haskell/actions/setup@v2
31
+ - uses : haskell-actions/setup@v2
34
32
id : setup-haskell-cabal
35
33
name : Setup Haskell
36
34
with :
51
49
key : ${{ runner.os }}-ghc-${{ matrix.ghc }}-cabal-${{ hashFiles('**/plan.json') }}
52
50
restore-keys : ${{ runner.os }}-ghc-${{ matrix.ghc }}-
53
51
52
+ - name : Install system dependencies
53
+ run : |
54
+ ./.github/workflows/install-system-dependencies.sh
54
55
- name : Install doctest
55
56
run : |
56
57
cabal install --ignore-project -j2 doctest --constraint='doctest ^>=0.22'
Original file line number Diff line number Diff line change @@ -6,13 +6,15 @@ packages:
6
6
servant-auth/servant-auth-server
7
7
servant-auth/servant-auth-swagger
8
8
9
- servant-client/
10
9
servant-client-core/
11
- servant-http-streams /
10
+ servant-client /
12
11
servant-docs/
13
12
servant-foreign/
13
+ servant-http-streams/
14
+ servant-quickcheck/
14
15
servant-server/
15
16
servant-swagger/
17
+
16
18
doc/tutorial/
17
19
18
20
-- servant streaming
You can’t perform that action at this time.
0 commit comments