Skip to content

Call make instead of dune build #3179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
3 changes: 1 addition & 2 deletions .github/workflows/scrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading