mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
name: lint
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
|
|
black:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
with:
|
|
make: checkblack
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
ruff:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
with:
|
|
make: checkruff
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
mypy:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
with:
|
|
make: mypy
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
pyright:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
with:
|
|
make: pyright
|
|
python-version: ${{ matrix.python-version }}
|
|
npm: true
|
|
|
|
|
|
prettier:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkprettier
|
|
npm: true
|
|
|
|
bundle:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkbundle
|
|
npm: true
|