Skip to content

v0.1.2-alpha.1 release, featuring MTP. #3

v0.1.2-alpha.1 release, featuring MTP.

v0.1.2-alpha.1 release, featuring MTP. #3

Workflow file for this run

name: lint
permissions:
contents: read
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/share/boost
df -h
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install lint dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir -r requirements-dev.txt
- name: Run all linting checks
run: ./scripts/lint.sh