Skip to content

Make putStrLn more atomic with line or block buffering #477

Make putStrLn more atomic with line or block buffering

Make putStrLn more atomic with line or block buffering #477

name: no-simdutf-windows-static
on:
- push
- pull_request
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-latest']
ghc: ['latest']
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
with:
ghc-version: ${{ matrix.ghc }}
- name: Update cabal package database
run: cabal update
- uses: actions/cache@v3
name: Cache cabal stuff
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}
- name: Build Tests
run: |
cabal build test:tests --enable-tests --enable-benchmarks -f-simdutf;
- name: Run Tests
run: |
$bin = cabal list-bin test:tests
$env:PATH = ''
& "$bin"
shell: pwsh