diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15b25f8..7e98aac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,9 +29,13 @@ jobs: path: . fail-on: warning - - name: Install ormolu + - name: Download Ormolu binary run: | - stack install ormolu + curl -L https://github.com/tweag/ormolu/releases/download/0.6.0.1/ormolu-Linux.zip -o ormolu.zip + unzip ormolu.zip + chmod +x ormolu + sudo mv ormolu /usr/local/bin/ + ormolu --version - name: Check formatting with ormolu run: |