Skip to content

Commit

Permalink
CI: Migrate from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
Fixes #5.
  • Loading branch information
RyanGlScott committed Sep 3, 2024
1 parent f53eca6 commit 9acd23d
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 36 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# The CACHE_VERSION can be updated to force the use of a new cache if
# the current cache contents become corrupted/invalid. This can
# sometimes happen when (for example) the OS version is changed but
# older .so files are cached, which can have various effects
# (e.g. cabal complains it can't find a valid version of the "happy"
# tool).
env:
CACHE_VERSION: 1

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
ghc: ["9.4.8", "9.6.6", "9.8.2"]
cabal: ["3.10.3.0"]

steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}

- uses: actions/cache/restore@v4
name: Restore cabal store cache
with:
path: |
${{ steps.setup-haskell.outputs.cabal-store }}
dist-newstyle
key: ${{ env.CACHE_VERSION }}-cabal-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles(format('cabal.GHC-{0}.config', matrix.ghc)) }}-${{ github.sha }}
restore-keys: |
${{ env.CACHE_VERSION }}-cabal-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles(format('cabal.GHC-{0}.config', matrix.ghc)) }}-
- name: Update
run: cabal update
- name: Configure
run: cabal configure --enable-tests
- name: Build
run: cabal build
- name: Run tests
run: cabal test

- uses: actions/cache/save@v4
name: Save cabal store cache
if: always()
with:
path: |
${{ steps.setup-haskell.outputs.cabal-store }}
dist-newstyle
key: ${{ env.CACHE_VERSION }}-cabal-${{ matrix.os }}-${{ matrix.ghc }}-${{ hashFiles(format('cabal.GHC-{0}.config', matrix.ghc)) }}-${{ github.sha }}
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

0 comments on commit 9acd23d

Please sign in to comment.