1b031ebd4c
MAJOR MOD CHANGE As before, moderators can silently observe any player that is not observing another player. (configurable) New: Players can invite other players to observe them. Invitations can be accepted or denied. (configurable privileges, defaults to interact) All the chat-commands are configurable. Temporary privileges can be given to observers, same set for sneak-observers and invited ones or separate set.
15 lines
332 B
YAML
15 lines
332 B
YAML
name: luacheck
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: apt
|
|
run: sudo apt-get install -y luarocks
|
|
- name: luacheck install
|
|
run: luarocks install --local luacheck
|
|
- name: luacheck run
|
|
run: $HOME/.luarocks/bin/luacheck ./
|
|
|