justgruba is testing out GitHub Actions π #7
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: Tests | |
| run-name: ${{ github.actor }} is testing out GitHub Actions π | |
| on: [push] | |
| jobs: | |
| Explore-GitHub-Actions: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13.0 | |
| - uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| version: "latest" | |
| - run: uv sync --locked | |
| - run: uv run pytest | |
| - run: echo "π This job's status is ${{ job.status }}." |