Skip to content

run lint fix and format with ruff #254

run lint fix and format with ruff

run lint fix and format with ruff #254

Workflow file for this run

name: run-test-win
on:
push:
branches: "*" # Run on all branches
pull_request:
branches: [master, dev]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: |
uv sync --dev
- name: Test with pytest
run: |
uv run pytest