From acefa615fe0b4d6cefed31e4759bd1b7a485166a Mon Sep 17 00:00:00 2001 From: Cuihtlauac ALVARADO Date: Fri, 20 Jun 2025 17:44:26 +0200 Subject: [PATCH] Call make instead of dune build --- .github/workflows/ci.yml | 6 +++--- .github/workflows/scrape.yml | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49b1ff16ff..a840271c61 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,11 +53,11 @@ jobs: run: opam install ocamlformat.0.26.2 - name: Build project - run: opam exec -- dune build @install + run: make - name: Run tests - run: opam exec -- dune test + run: make test - name: Format code - run: opam exec -- dune build --auto-promote @fmt + run: make fmt if: runner.os == 'Linux' diff --git a/.github/workflows/scrape.yml b/.github/workflows/scrape.yml index db66d1fbd7..c6788a6e98 100644 --- a/.github/workflows/scrape.yml +++ b/.github/workflows/scrape.yml @@ -45,8 +45,7 @@ jobs: - name: Run scrapers run: | - opam exec -- dune exec tool/ood-gen/bin/scrape.exe planet - opam exec -- dune exec tool/ood-gen/bin/scrape.exe video + make scrape - name: Create Pull Request uses: peter-evans/create-pull-request@v7