Skip to content

Merge pull request #18 from ami-iit/to_file #338

Merge pull request #18 from ami-iit/to_file

Merge pull request #18 from ami-iit/to_file #338

Workflow file for this run

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 meshcat-python ffmpeg-python matplotlib resolve-robotics-uri-py git hdf5storage
mamba list
- name: Install
shell: bash -l {0}
run: |
pip install --no-deps -e .[all]
- name: Test
shell: bash -l {0}
run: |
pytest