mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-01-18 21:32:38 +01:00
f286a91253
workflow wasnt failing on wrong formatting
28 lines
472 B
YAML
28 lines
472 B
YAML
name: lint
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
black:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkblack
|
|
ruff:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkruff
|
|
mypy:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: mypy
|
|
pyright:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: pyright
|
|
npm: true
|
|
prettier:
|
|
uses: ./.github/workflows/make.yml
|
|
with:
|
|
make: checkprettier
|
|
npm: true
|