Skip to content

added a README for the new data directory #53

added a README for the new data directory

added a README for the new data directory #53

Workflow file for this run

# https://kodimensional.dev/github-actions
name: normalCheck
# Trigger the workflow on push or pull request, but only for the main branch
on:
pull_request:
push:
branches: [main]
jobs:
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
matrix:
stack: ["latest"]
ghc: ["8.10.7"]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Haskell
uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: ${{ matrix.stack }}
- name: Cache ~/.stack
uses: freckle/stack-cache-action@v2
- name: Build
run: |
stack build \
--system-ghc \
--test \
--bench \
--no-run-tests \
--no-run-benchmarks \
--pedantic