generated from krampus/template-godot4
Added CI job for linting
All checks were successful
linting & formatting / build (push) Successful in 20s
All checks were successful
linting & formatting / build (push) Successful in 20s
This commit is contained in:
parent
f8fc28ed68
commit
2e3b51e3b1
32
.gitea/workflows/lint.yaml
Normal file
32
.gitea/workflows/lint.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: linting & formatting
|
||||||
|
run-name: ${{ gitea.actor }} is checking linting & formatting.
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- ci-test
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
run: |
|
||||||
|
git init
|
||||||
|
git remote add origin ${{ gitea.event.repository.clone_url }}
|
||||||
|
git fetch --depth 1 origin ${{ gitea.ref }}
|
||||||
|
git checkout FETCH_HEAD
|
||||||
|
git lfs pull
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v5.3.0
|
||||||
|
with:
|
||||||
|
python-version: '3.8'
|
||||||
|
- name: Install gdscript-toolkit
|
||||||
|
run: pip install -r requirements.txt
|
||||||
|
- name: Run gdLint
|
||||||
|
run: gdlint src/
|
||||||
|
- name: Check formatting
|
||||||
|
run: gdformat -c src
|
@ -4,8 +4,6 @@ run-name: ${{ gitea.actor }} is publishing GFOLF ${{ gitea.ref_name }} to itch.i
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
|
||||||
- ci-test
|
|
||||||
tags:
|
tags:
|
||||||
- v*
|
- v*
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user