Skip to content

Merge pull request #1 from TobiaMarcucci/new_motion_planning_features #27

Merge pull request #1 from TobiaMarcucci/new_motion_planning_features

Merge pull request #1 from TobiaMarcucci/new_motion_planning_features #27

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run unit tests
run: |
pytest