Skip to content

Commit

Permalink
new: added ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
cstml committed Jun 24, 2021
1 parent 24680a2 commit cadc8a4
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Haskell CI

on:
push:
branches: [ publicDev ]
pull_request:
branches: [ publicDev ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-haskell@v1
with:
ghc-version: '8.10.4'
cabal-version: '3.4'

- name: Cache
uses: actions/cache@v1
env:
cache-name: cache-cabal
with:
path: ~/.cabal
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/*.cabal') }}-${{ hashFiles('**/cabal.project') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: |
cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: |
cabal test all

0 comments on commit cadc8a4

Please sign in to comment.