Lift the requirement of human fingering with RP1M #89
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: build | |
on: | |
push: | |
paths-ignore: | |
- "tutorial.ipynb" | |
- "docs/**" | |
- "**/README.md" | |
pull_request: | |
paths-ignore: | |
- "tutorial.ipynb" | |
- "docs/**" | |
- "**/README.md" | |
jobs: | |
run-robopianist-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["python:3.11"] | |
steps: | |
- name: Checkout robopianist | |
uses: actions/checkout@v3 | |
- name: Checkout submodules | |
run: | | |
git submodule init | |
git submodule update | |
- name: Install dependencies | |
shell: bash | |
run: | | |
bash scripts/install_deps.sh | |
- name: Prepare Python | |
run: | | |
python -m pip install --upgrade pip wheel | |
pip install -e ".[test]" | |
- name: Run tests | |
run: | | |
make test |