Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pmiddend authored and picca committed Aug 1, 2024
1 parent 9bce9f8 commit a8c12f6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-on-debian.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: build on debian
on: [push]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.4'
cabal-version: '3.0.0.0' # Exact version of Cabal -
- name: install hdf5
run: sudo apt-get install -y libhdf5-dev
- name: build with cabal
run: cabal build

0 comments on commit a8c12f6

Please sign in to comment.