15 lines
422 B
YAML
15 lines
422 B
YAML
on: [push]
|
|
name: build
|
|
jobs:
|
|
runhaskell:
|
|
name: Hello World
|
|
runs-on: ubuntu-latest # or macOS-latest, or windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-haskell@v1.1
|
|
with:
|
|
# cabal-version: 'latest'. Omitted, but defalts to 'latest'
|
|
enable-stack: true
|
|
stack-version: 'latest'
|
|
- run: stack build
|
|
- run: stack exec site build
|