Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/luacheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Luacheck

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: 'true'


- name: Install luacheck
run: |
pip install hererocks
hererocks env --lua 5.1 -rlatest
source env/bin/activate
luarocks install luacheck

- name: Run luacheck
run: |
source env/bin/activate
luacheck scen_edit triggers libs_sb/utils libs_sb/savetable.lua --enable 1

22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions dist_cfg/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,5 @@
}
]


}
2 changes: 1 addition & 1 deletion scen_edit/view/map/water_editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function WaterEditor:init()
}),
ColorField({
name = "diffuseColor",
title = "Diffuse Color:",
title = "Diffuse Color:",
tooltip = "The color of the diffuse lighting of the water",
width = 140,
format = 'rgb',
Expand Down