Skip to content

Add source for tree reroot fold #196

Add source for tree reroot fold

Add source for tree reroot fold #196

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
with:
ghc-version: '8.10.1' # Current Codeforces version
enable-stack: true
stack-version: 'latest'
- uses: actions/cache@v2
with:
path: |
~/.stack
./stack-work
key: ${{ runner.os }}-stack-${{ hashFiles('stack.yaml.lock', 'package.yaml') }}
restore-keys: |
${{ runner.os }}-stack
- name: Build
run: stack test --no-run-tests
- name: Test
run: stack test --test-arguments "--color --qc-max-success=1000"