The humanoid pose finder outputs something #181
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI/CD | |
on: | |
push: | |
pull_request: | |
release: | |
types: | |
- published | |
jobs: | |
test: | |
name: 'Python${{ matrix.python }}@${{ matrix.os }}' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- macos-latest | |
- windows-latest | |
python: | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
channels: conda-forge,robotology | |
channel-priority: true | |
- name: Dependencies | |
shell: bash -l {0} | |
run: | | |
mamba install python=${{ matrix.python }} casadi pytest liecasadi adam-robotics idyntree | |
mamba list | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
pip install --no-deps -e .[all] | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
pytest |