Update README.md with usage Colab #135
Workflow file for this run
This file contains hidden or 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: Test | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 # Recommended: uses latest stable v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 # Recommended: uses latest stable v5 | |
| with: | |
| python-version: '3.12' | |
| cache: 'pip' # Enable pip caching | |
| - name: Install Dependencies | |
| # This will install your project in editable mode and its dev dependencies, | |
| # leveraging the pip cache if available. | |
| run: pip install .[dev] | |
| - name: Run Pytest on pose_evaluation | |
| run: pytest pose_evaluation |