Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lisphacker committed Oct 12, 2023
1 parent 031c8df commit 51d8a38
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 122 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on:
pull_request:
push:
branches: main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

defaults:
run:
working-directory: testing

jobs:
test:
strategy:
matrix:
runner:
- ubuntu-latest
- macOS-latest
# - windows-latest

resolver:
# - nightly
- lts-21.14 # ghc-9.4.7

fail-fast: false

runs-on: ${{ matrix.runner }}

steps:
- uses: actions/checkout@v3
- uses: freckle/stack-cache-action@main
with:
stack-yaml: ${{ matrix.stack-yaml }}
- uses: freckle/stack-action@main
with:
stack-yaml: ${{ matrix.stack-yaml }}

122 changes: 0 additions & 122 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 51d8a38

Please sign in to comment.