Skip to content

Commit

Permalink
Merge pull request #11 from krakrjak/actions-modernization
Browse files Browse the repository at this point in the history
✨  Actions modernization
  • Loading branch information
krakrjak authored Dec 15, 2024
2 parents 27a065d + e4fb889 commit 91a092c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 263 deletions.
141 changes: 0 additions & 141 deletions .github/workflows/binaries-mac-x64.yml

This file was deleted.

122 changes: 0 additions & 122 deletions .github/workflows/binaries-windows-x64.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push]
name: build
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ghc: ['9.8.4']
os: [ubuntu-latest, macOS-latest, windows-latest]
name: Haskell GHC ${{ matrix.ghc }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Haskell
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-no-global: true
stack-setup-ghc: true
- run: stack build
- run: stack test

0 comments on commit 91a092c

Please sign in to comment.