Skip to content

New Core PR, after Rebased with upstream/master #45

New Core PR, after Rebased with upstream/master

New Core PR, after Rebased with upstream/master #45

Workflow file for this run

name: linting

Check failure on line 1 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

(Line: 14, Col: 5): Required property is missing: runs-on
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
# TODO: setup linting with uv/ruff
# informed by testing.yml and https://medium.com/@sidharthvijayakumar7/automating-pylint-in-github-workflow-80c84b2ff243 and ruff documentation
jobs:
linting:
steps:
- uses: actions/checkout@v4
- name: Install uv and set up the python version
uses: astral-sh/setup-uv@v6
with:
python-version: '3.12'
version: "latest"
- name: Analyzing the code with ruff
run: uvx ruff check --output-format=github