Skip to content

fixed installations errors in tomsup #26

fixed installations errors in tomsup

fixed installations errors in tomsup #26

Workflow file for this run

# GitHub action to run linting
name: run-linting
on:
push:
branches: [main, master]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Lint
id: lint
run: |
make lint-check