Skip to content

Commit

Permalink
Add Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
leifmetcalf committed Jun 23, 2020
1 parent 87812ee commit 59ca757
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: push

jobs:
test:
container:
image: haskell:${{matrix.ghc}}
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ['8.10', '8.8']
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Update cabal package list
run: cabal v2-update
- name: Build euphoria
run: cabal v2-build
- name: Test euphoria
run: cabal v2-test

0 comments on commit 59ca757

Please sign in to comment.