mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-11 05:19:41 +02:00
breaking change in how to install lnbits you will need to run `make build` instead of `poetry install` and it required to install nodejs for building `make build` remove bundle linter make command
50 lines
954 B
YAML
50 lines
954 B
YAML
name: lint
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
|
|
black:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9", "3.10"]
|
|
with:
|
|
make: checkblack
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
ruff:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9", "3.10"]
|
|
with:
|
|
make: checkruff
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
mypy:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9", "3.10"]
|
|
with:
|
|
make: mypy
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
pyright:
|
|
uses: ./.github/workflows/make.yml
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.9", "3.10"]
|
|
with:
|
|
make: pyright
|
|
python-version: ${{ matrix.python-version }}
|
|
npm: true
|
|
|
|
|
|
prettier:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkprettier
|
|
npm: true
|