Skip to content

fixing >> linting

fixing >> linting #196

Workflow file for this run

---
name: CI
"on":
workflow_dispatch:
push:
branches:
- '**'
paths-ignore:
- '**.md'
- '**.rst'
- '**.txt'
tags-ignore:
- 'v**' # Don't run CI tests on release tags
jobs:
tests:
name: Tests on ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Tests
run: |
uv --version
uv run --python ${{ matrix.python-version }} pytest
env:
EXOSCALE_API_KEY: ${{ secrets.EXOSCALE_API_KEY }}
EXOSCALE_API_SECRET: ${{ secrets.EXOSCALE_API_SECRET }}