diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1156de03c..2e40671d90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,6 +2,14 @@ name: DotNet Build on: [push, workflow_dispatch, pull_request] jobs: + lint-python: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: astral-sh/ruff-action@v3 + with: + args: "check --exit-zero" # TODO (cclauss): Remove this line. + build: name: Build Release runs-on: windows-latest @@ -80,3 +88,4 @@ jobs: run: | cd bin\Debug\net461 gci plugins | ForEach-Object { if (Test-Path $_.Name -PathType Leaf) { Write-Host "Remove" $_.FullName ; Remove-Item $_.FullName } else { Write-Host $_.Name } } +