build(merge): stupid f-ing shit! what is the "correct" way to deal wi… #10
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: Tox Check | |
| on: [push, pull_request] | |
| jobs: | |
| tox: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install libjpeg-dev (used for Pillow library) | |
| run: sudo apt-get install libjpeg-dev | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| version: 0.6.12 | |
| - name: Install Python using uv | |
| run: uv python install | |
| - name: Install Packages using uv | |
| run: uv sync --all-groups --all-extras | |
| - name: Run Tox | |
| run: uv run tox |