Skip to content

Update supported Python versions #2

Update supported Python versions

Update supported Python versions #2

Workflow file for this run

name: Test
on:
push:
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Test with pytest
run: |
pip install .[test]
pytest --cov dm_robotics.panda ./tests/