Skip to content

Upgrade workflows

Upgrade workflows #135

Workflow file for this run

name: linting
on: [push]
env:
UV_SYSTEM_PYTHON: true
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install package
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv pip install --no-deps .
uv pip install -r dev-requirements.txt
- name: ruff
run: |
ruff pynxtools_mpes tests
- name: ruff formatting
run: |
ruff format --check pynxtools_mpes tests
- name: mypy
run: |
mypy pynxtools_mpes tests