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 b035da0 commit cdab2ca
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ghc: ['8.10', '8.8', '8.6']
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup haskell
uses: actions/[email protected]
with:
ghc-version: ${{ matrix.ghc }}
- name: Build euphoria
run: cabal v2-build
- name: Test euphoria
run: cabal v2-test

0 comments on commit cdab2ca

Please sign in to comment.