-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 915 Bytes
/
cabal.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Haskell Integration
on:
push:
branches:
- master
- feature/*
tags:
- "v*"
pull_request:
branches:
- master
schedule:
- cron: "0 17 * * *"
jobs:
BuildAndTest:
name: Haskell Integration
uses: vapourismo/workflows/.github/workflows/haskell-build-and-test.yaml@master
with:
ghc-versions: 9.2.1 9.0.2 8.10.7 8.8.4 8.6.5
unstable-ghc-versions: latest
HLint:
uses: vapourismo/workflows/.github/workflows/haskell-hlint.yaml@master
with:
paths: lib test
Hackage:
name: Hackage
needs:
- BuildAndTest
- HLint
uses: vapourismo/workflows/.github/workflows/haskell-hackage-upload.yaml@master
with:
package-name: ${{ github.event.repository.name }}
environment: hackage
secrets:
hackage-user: ${{ secrets.HACKAGE_USER }}
hackage-password: ${{ secrets.HACKAGE_PASSWORD }}