This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a CI pipeline based on Github Actions
- Loading branch information
1 parent
4ce6722
commit 5401e2a
Showing
5 changed files
with
62 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Continuous Integration | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
continuous-integration: | ||
strategy: | ||
matrix: | ||
ghc-version: | ||
- "9.0.2" | ||
- "9.2.8" | ||
- "9.4.5" | ||
- "9.6.4" | ||
- "9.8.2" | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install cabal/ghc | ||
uses: haskell-actions/setup@v2 | ||
id: setup-haskell | ||
with: | ||
ghc-version: ${{ matrix.ghc-version }} | ||
cabal-version: '3.10.3.0' | ||
|
||
- name: Generate freeze file | ||
run: | | ||
cabal update | ||
cabal configure --disable-optimization | ||
cabal freeze | ||
# 'cabal freeze' will use the nearest index state which might not be exactly equal | ||
# to the index state specified in 'cabal.project' | ||
sed '/^index-state: /d' cabal.project.freeze > dependencies-versions | ||
- name: Cache cabal work | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
dist-newstyle | ||
${{ steps.setup-haskell.outputs.cabal-store }} | ||
# We are using the hash of 'cabal.project.local' so that different levels | ||
# of optimizations are cached separately | ||
key: ${{ runner.os }}-${{ hashFiles('dependencies-versions', 'cabal.project', 'cabal.project.local') }}-cabal-install | ||
|
||
- name: Build dependencies only | ||
run: | | ||
cabal build --enable-tests --only-dependencies | ||
- name: Build this package | ||
run: | | ||
cabal build --enable-tests | ||
- name: Run tests | ||
run: | | ||
cabal test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
packages: *.cabal | ||
|
||
test-show-details: streaming | ||
tests: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters