Skip to content

feat: support weighted playlist seeds #33

feat: support weighted playlist seeds

feat: support weighted playlist seeds #33

Workflow file for this run

name: Lint
on:
push:
branches: [main]
tags: ['v*']
pull_request:
workflow_dispatch:
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
jobs:
ruff:
name: ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: pip install 'ruff>=0.6'
- name: ruff check
run: ruff check .
- name: ruff format --check
run: ruff format --check .