mirror of
https://github.com/darkzoul5/YoutubePlaylistSync.git
synced 2026-07-03 04:23:59 +03:00
29 lines
420 B
YAML
29 lines
420 B
YAML
name: Lint Python code
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "assets/**"
|
|
- "README.md"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "assets/**"
|
|
- "README.md"
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Install Ruff
|
|
run: pip install ruff
|
|
|
|
- name: Run linter
|
|
run: ruff check .
|