Skip to content

Commit d4fbc46

Browse files
authored
chore: Call make instead of dune build (#3179)
1 parent 5bbd557 commit d4fbc46

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ jobs:
5353
run: opam install ocamlformat.0.26.2
5454

5555
- name: Build project
56-
run: opam exec -- dune build @install
56+
run: make
5757

5858
- name: Run tests
59-
run: opam exec -- dune test
59+
run: make test
6060

6161
- name: Format code
62-
run: opam exec -- dune build --auto-promote @fmt
62+
run: make fmt
6363
if: runner.os == 'Linux'

.github/workflows/scrape.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ jobs:
4545
4646
- name: Run scrapers
4747
run: |
48-
opam exec -- dune exec tool/ood-gen/bin/scrape.exe planet
49-
opam exec -- dune exec tool/ood-gen/bin/scrape.exe video
48+
make scrape
5049
5150
- name: Create Pull Request
5251
uses: peter-evans/create-pull-request@v7

0 commit comments

Comments
 (0)