Skip to content

Commit

Permalink
Merge pull request #30 from shayne-fletcher/github-workflow
Browse files Browse the repository at this point in the history
first workflow
  • Loading branch information
ekmett authored Apr 10, 2024
2 parents 98c943d + 908dcfe commit 63b99bb
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: haskell ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ['9.2.8', '9.4.5', '9.6.4']
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build termination automata version common summary-unit set
# TODO: enable these
# lsp relative rope console server syntax parser layout lexer token dyck layout algebra

0 comments on commit 63b99bb

Please sign in to comment.