Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(tools): enable fourmolu in ci #857

Merged
merged 1 commit into from
Mar 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ jobs:
run: ( ( which fortitude ) || ( ( which brew && brew install fortitude ) || ( which pipx && pipx install fortitude-lint ) ) || ( echo "Unable to install tool" ) )
- name: fortran-linter
run: ( ( which fortran-linter ) || ( ( which brew && brew install fprettify ) || ( which pipx && pipx install fortran-linter ) ) || ( echo "Unable to install tool" ) )
- name: fourmolu
run: ( ( which fourmolu ) || ( ( which brew && brew install fourmolu ) || ( which stack && stack install fourmolu ) || ( which cabal && cabal install fourmolu ) ) || ( echo "Unable to install tool" ) )
- name: fprettify
run: ( ( which fprettify ) || ( ( which brew && brew install fprettify ) || ( which pipx && pipx install fprettify ) ) || ( echo "Unable to install tool" ) )
- name: gofumpt
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. Dates are d

#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.8.2...HEAD)

- test: validate completion command writes to stdout [`#856`](https://github.com/hougesen/mdsf/pull/856)
- refactor(cache-prune): indicate if command failed [`#855`](https://github.com/hougesen/mdsf/pull/855)
- ci: install homebrew [`#853`](https://github.com/hougesen/mdsf/pull/853)
- test: caching works [`#854`](https://github.com/hougesen/mdsf/pull/854)
Expand Down
1 change: 0 additions & 1 deletion tools/fourmolu/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
}
},
"description": "A formatter for Haskell source code",
"disable_ci_package_install": true,
"homepage": "https://github.com/fourmolu/fourmolu",
"languages": ["haskell"],
"packages": {
Expand Down
Loading