WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

chore: updating actions/checkout and adding setup-uv #1231

chore: updating actions/checkout and adding setup-uv

chore: updating actions/checkout and adding setup-uv #1231

Workflow file for this run

---
name: Python Linting
"on":
push:
branches:
- main
pull_request:
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
activate-environment: "true"
github-token: ${{ github.token }}
- name: Running ruff
run: |
uv run ruff check $(basename $(pwd)) tests