Skip to content

Commit

Permalink
simplify CI files
Browse files Browse the repository at this point in the history
  • Loading branch information
zapashcanon committed Mar 5, 2024
1 parent aa48784 commit 57319f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
allow-prerelease-opam: true
- name: depext
run: |
opam install -y ./*.opam --depext-only --with-test --with-doc
opam install . --depext-only --with-test --with-doc
- name: setup
if: steps.cache-opam.outputs.cache-hit != 'true'
run: |
opam install -y ./*.opam --deps-only --with-test --with-doc
opam install . --deps-only --with-test --with-doc
- name: build
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
allow-prerelease-opam: true
- name: depext
run: |
opam install -y ./*.opam --depext-only --with-test --with-doc
opam install . --depext-only --with-test --with-doc
- name: setup-deploy
if: steps.cache-opam.outputs.cache-hit != 'true'
run: |
opam install -y ./*.opam --deps-only --with-test --with-doc
opam install . --deps-only --with-test --with-doc
- name: api
run: |
touch doc/.nojekyll
Expand Down

0 comments on commit 57319f3

Please sign in to comment.