wip #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hugs-CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
linux: | |
name: Hugs-CI - Linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: apt | |
run: | | |
apt-get update | |
apt-get install -y hugs libhugs-time-bundled | |
- name: Get Haskell | |
id: haskell | |
uses: haskell-actions/setup@v2 | |
with: | |
ghc-version: '9.6' | |
cabal-version: '3.10.1.0' | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: build and test | |
run: ./test-hugs |