Skip to content

Extended support to python versions >=3.10,<3.14 #103

Extended support to python versions >=3.10,<3.14

Extended support to python versions >=3.10,<3.14 #103

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: false
- name: Install dependencies
run: uv pip install ".[dev]"
- name: Loggin wandb
shell: bash
run: wandb login "$(printf '%*s' 40 '' | tr ' ' 'X')"
- name: Run tests
run: pytest