Skip to content

Commit

Permalink
Building ci
Browse files Browse the repository at this point in the history
  • Loading branch information
July541 committed Aug 24, 2024
1 parent 47143aa commit 300e346
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Building

on:
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
ghc: ['9.10', '9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2', '8.0']
os: ['ubuntu-latest', 'windows-latest']

name: Build on ${{ matrix.os }} with GHC ${{ matrix.ghc }}

steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
- run: cabal build

0 comments on commit 300e346

Please sign in to comment.