From 190211adae893e198919de4914652ff0e09119e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Roch=C3=A9?= Date: Sat, 19 Oct 2024 20:59:13 +0800 Subject: [PATCH] ci: don't use lint-fmt --- .github/workflows/lint.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6d7523b..a15123b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,8 +18,11 @@ jobs: dune-cache: true allow-prerelease-opam: true - - name: Lint fmt - uses: ocaml/setup-ocaml/lint-fmt@v3 +# - name: Lint fmt +# uses: ocaml/setup-ocaml/lint-fmt@v3 + + - name: Install ocamlformat + run: grep version .ocamlformat | cut -d '=' -f 2 | xargs -I V opam install ocamlformat=V - name: Format code run: |