diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ea67163e8..44802f650 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -111,9 +111,22 @@ jobs: - run: opam exec -- make ppx_let-test if: ${{ matrix.ppx == true }} - lint-opam: + lint-doc: runs-on: ubuntu-latest + steps: + - name: Checkout tree + uses: actions/checkout@v4 + - name: Set-up OCaml + uses: ocaml/setup-ocaml@v2 + with: + ocaml-compiler: "5.1" + allow-prerelease-opam: true + + - uses: ocaml/setup-ocaml/lint-doc@v2 + + lint-opam: + runs-on: ubuntu-latest steps: - name: Checkout tree uses: actions/checkout@v4 @@ -123,6 +136,5 @@ jobs: with: ocaml-compiler: "5.1" allow-prerelease-opam: true - dune-cache: true - uses: ocaml/setup-ocaml/lint-opam@v2