mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
25 lines
451 B
YAML
25 lines
451 B
YAML
|
name: Static Checks 📊
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore:
|
||
|
- gh-pages
|
||
|
- l10n_master
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- "addons/*"
|
||
|
- "src/*"
|
||
|
|
||
|
jobs:
|
||
|
format:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- run: pip3 install gdtoolkit
|
||
|
- run: gdformat --diff .
|
||
|
lint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- run: pip3 install gdtoolkit
|
||
|
- run: gdlint .
|