Skip to content
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

Don't build dependencies with tests or docs #267

Merged
merged 5 commits into from
Mar 6, 2021
Merged
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
15 changes: 11 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,21 @@ jobs:
- name: Install SATySFi
if: matrix.with-satysfi
run: |
opam depext satysfi --yes --with-doc --with-test
opam install satysfi --yes --with-doc --with-test
# opam depext satysfi --yes --with-doc --with-test
# opam install satysfi --yes --with-doc --with-test
opam depext satysfi --yes
opam install satysfi --yes

- name: Install Satyrographos
run: |
opam pin add satyrographos.dev . --no-action
opam depext satyrographos --yes --with-doc --with-test
opam install satyrographos --yes --with-doc --with-test
opam depext satyrographos --yes --with-doc
opam install satyrographos --yes --with-doc

- name: Test Satyrographos
run: |
opam lint
opam exec -- dune runtest

- name: Clean up logs and temporary files
run: |
Expand Down