Skip to content

bump to 1.2.35.663

bump to 1.2.35.663 #8

Workflow file for this run

name: CI
on:
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Formatting check
run: |
python -m black --check spotify_dl_cli
- name: Compile check
run: |
python -m compileall spotify_dl_cli