Bump the core-packages group across 1 directory with 2 updates #356
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 | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| Lint: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| python-version: ["3.14"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install tox-uv | |
| run: uv tool install tox --with tox-uv | |
| - name: ruff | |
| run: | | |
| tox -e ruff-check | |
| tests: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| python-version: ["3.10", "3.12", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: sudo apt update && sudo apt install --yes libev-dev | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install tox-uv | |
| run: uv tool install tox --with tox-uv | |
| - name: Unit tests | |
| run: | | |
| tox -e ${{ matrix.python-version }} | |
| - name: Functional tests | |
| run: | | |
| tox -e ${{ matrix.python-version }}-functional |