Bump actions/checkout from 6 to 7 #10
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 commands | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test-commands: | |
| runs-on: ubuntu-22.04 | |
| container: ghcr.io/rangamanilabucsd/smart-lab:v2.2.2 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: "Install code" | |
| run: python3 -m pip install pytest jupytext | |
| - name: Run smoke tests | |
| run: | | |
| python3 -m pytest scripts/test_scripts.py -v |