Skip to content

hlint-from-scratch #412

hlint-from-scratch

hlint-from-scratch #412

name: hlint-from-scratch
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
schedule:
- cron: '0 0 * * *' # every day
jobs:
hlint-from-scratch:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell
with:
ghc-version: 9.10.1
cabal-version: 'latest'
- name: Install build tools (macOS)
run: brew install automake
if: matrix.os == 'macos'
- name: Configure msys2 (windows)
shell: bash
run: |-
echo "MSYSTEM=CLANG64" >> $GITHUB_ENV
echo "/c/mingw64/usr/bin" >> $GITHUB_PATH
echo "/c/msys64/usr/bin" >> $GITHUB_PATH
if: matrix.os == 'windows'
- name: Run hlint-from-scratch (windows)
shell: C:\msys64\usr\bin\bash.exe --noprofile --norc -e -o pipefail '{0}'
run: |-
GHCLIB_AZURE=1; export GHCLIB_AZURE
pacman -S autoconf automake-wrapper make patch python tar mintty --noconfirm
./hlint-from-scratch.sh --init="$HOME/project"
./hlint-from-scratch.sh --ghc-flavor="" --no-checkout
if: matrix.os == 'windows'
- name: Run hlint-from-scratch (unix)
shell: bash
run: |-
GHCLIB_AZURE=1; export GHCLIB_AZURE
./hlint-from-scratch.sh --init="$HOME/project"
./hlint-from-scratch.sh --ghc-flavor="" --no-checkout
if: matrix.os == 'ubuntu' || matrix.os == 'macos'