awesomewm.d.tl/.woodpecker/lint.yml

60 lines
1.2 KiB
YAML
Raw Normal View History

2022-08-13 03:10:11 +02:00
variables:
2022-08-20 13:32:23 +02:00
- &when_path_lua
2022-08-13 03:10:11 +02:00
- ".woodpecker/lint.yml"
- "justfile"
2022-08-13 03:10:11 +02:00
- "**/*.lua"
2022-08-20 13:32:23 +02:00
- &when_path_teal
- ".woodpecker/lint.yml"
- "justfile"
2022-08-20 13:32:23 +02:00
- "**/*.tl"
2022-08-13 03:10:11 +02:00
2022-08-12 19:10:51 +02:00
pipeline:
# lint-pipeline:
# image: woodpeckerci/woodpecker-cli:v0.15.11-alpine
# group: lint
# commands:
# - woodpecker-cli lint .woodpecker/*.yml
# when:
# path:
# - ".woodpecker/**"
2022-10-23 13:26:05 +02:00
2023-09-10 19:55:03 +02:00
lint-rockspec:
image: gitea.aireone.xyz/aire-one/awesomewm.d.tl/luacheck_just:latest
group: lint
commands:
2023-09-18 11:44:19 +02:00
- just check-rockspecs
2023-09-10 19:55:03 +02:00
when:
path:
- ".woodpecker/**"
- "awesomewmdtl-dev-1.rockspec"
2023-09-10 19:55:03 +02:00
- "rockspec/*.rockspec"
2022-08-20 13:32:23 +02:00
lint-lua:
2022-12-09 20:11:28 +01:00
image: gitea.aireone.xyz/aire-one/awesomewm.d.tl/luacheck_just:latest
2022-08-12 19:10:51 +02:00
group: lint
commands:
- just check-lua
2022-08-12 19:45:52 +02:00
when:
2022-08-20 13:32:23 +02:00
path: *when_path_lua
2022-08-12 19:45:52 +02:00
2022-08-20 13:32:23 +02:00
style-lua:
2022-12-09 20:11:28 +01:00
image: gitea.aireone.xyz/aire-one/awesomewm.d.tl/stylua_just:latest
2022-08-12 19:10:51 +02:00
group: lint
commands:
- just check-format
2022-08-12 19:45:52 +02:00
when:
2022-08-20 13:32:23 +02:00
path: *when_path_lua
lint-teal:
2022-12-09 20:11:28 +01:00
image: gitea.aireone.xyz/aire-one/awesomewm.d.tl/cyan:latest
2022-08-20 13:32:23 +02:00
group: lint
commands:
- just check-teal
when:
path: *when_path_teal
2022-10-23 19:01:39 +02:00
branches: master
depends_on:
- docker-build