Skip to content

Slack log update at Thu Nov 7 18:13:23 2024 #1474

Slack log update at Thu Nov 7 18:13:23 2024

Slack log update at Thu Nov 7 18:13:23 2024 #1474

Workflow file for this run

name: Verify
on:
pull_request: null
push:
branches:
- master
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-2019]
ghc: ["8.10.4"] # stack.yamlのresolverに合わせて更新してください
steps:
- uses: actions/checkout@v2
- name: Cache .stack
id: cache-stack
uses: actions/[email protected]
with:
path: ~/.stack
key: ${{ runner.os }}-stack-${{ hashFiles('**/package.yaml') }}-${{ hashFiles('**/stack.yaml.lock') }}
restore-keys: |
${{ runner.os }}-stack-
- uses: haskell/actions/[email protected]
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: 'latest'
- name: Install dependencies
run: stack --system-ghc test --only-dependencies
- name: Run test
run: stack --system-ghc test --pedantic