Refactoring of the handling of clone:// and clone+start:// URI in Hos… #484
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: Run unit tests | |
| on: [push] | |
| permissions: {} | |
| jobs: | |
| unit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/uv-setup/ | |
| with: | |
| dev: false | |
| - name: Create a dummy data.py | |
| run: cp data.py-dist data.py | |
| - run: pytest tests/unit/ |