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

Add workflow_dispatch and schedule events to ci_cd workflow and constraint jax<0.4.25 to be #93

Merged
merged 4 commits into from
Feb 28, 2024
Merged
Changes from 2 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
10 changes: 10 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
name: Python CI/CD

on:
workflow_dispatch:
push:
pull_request:
release:
types:
- published
schedule:
# * is a special character in YAML so you have to quote this string
# Execute a "nightly" build at 2 AM UTC
- cron: '0 2 * * *'


jobs:

Expand Down Expand Up @@ -83,6 +89,10 @@ jobs:
shell: bash
run: pip install "$(find dist/ -type f -name '*.whl')"

- name: Document installed pip packages
shell: bash
run: pip list --verbose

- name: Import the package
run: python -c "import jaxsim"

Expand Down
Loading