Skip to content

fix: dangling non-existing variable github_info #148

fix: dangling non-existing variable github_info

fix: dangling non-existing variable github_info #148

Workflow file for this run

name: Ruff Linter
on:
push:
branches:
- main
paths:
- "**.py"
pull_request:
paths:
- "**.py"
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Install Python
uses: actions/setup-python@v5.4.0
with:
python-version: "3.12"
- name: Install Ruff
run: pip install ruff
- name: Run Ruff Check
run: ruff check . --output-format=github
continue-on-error: true
- name: Commit fixes
uses: stefanzweifel/git-auto-commit-action@v5.1.0
with:
commit_message: "style: fix code style issues with Ruff"
branch: ${{ github.head_ref }}