Skip to content

Hello CI

Hello CI #601

Workflow file for this run

name: "Formatting check (ormolu)"
on:
pull_request:
push:
jobs:
ormolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v47.0.6
with:
# globs copied from default settings for run-ormolu
files: |
**/*.hs
**/*.hs-boot
separator: "\n"
- uses: haskell-actions/run-ormolu@v19
with:
version: "0.8.0.2"
pattern: ${{ steps.changed-files.outputs.all_changed_files }}