mirror of
https://github.com/darkzoul5/YoutubePlaylistSync.git
synced 2026-09-19 21:12:20 +03:00
18 lines
249 B
YAML
18 lines
249 B
YAML
name: Lint Python code
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Ruff
|
|
run: pip install ruff
|
|
|
|
- name: Run linter
|
|
run: ruff check . |