Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev ci on other systems #114

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
on: [push, pull_request]
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- v*
name: build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['8.8.4','8.10.7','9.0.2','9.2.4']
os: [ubuntu-latest]
name: Haskell GHC ${{ matrix.ghc }} cabal + stack
ghc: ['8.8','8.10','9.0','9.2']
os: [ubuntu-latest, macOS-latest, windows-latest]
name: Haskell GHC ${{ matrix.ghc }} on ${{ matrix.os }}, cabal + stack
env:
cabal_project_freeze: cabal.project.${{ matrix.ghc }}.freeze
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v2.0.2
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
id: setup-haskell-build
with:
ghc-version: ${{ matrix.ghc }}
Expand Down