Second try to add a no-unsafe flag. This is better than the first att… #68
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: Python | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Python Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: astral-sh/setup-uv@v6 | |
| - name: Run tests | |
| working-directory: PythonScripts | |
| run: uv run pytest |