ci: use GH Actions istead of Travis CI

This commit is contained in:
Thomas Vigouroux 2020-07-09 22:22:23 +02:00 committed by Thomas Vigouroux
parent d51b948617
commit 0e041bd343
3 changed files with 21 additions and 12 deletions

20
.github/workflows/lint.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Linting and style checking
on: [push, pull_request]
jobs:
luacheck:
name: Luacheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Prepare
run: |
sudo apt-get update
sudo add-apt-repository universe
sudo apt install luarocks -y
sudo luarocks install luacheck
- name: Run Luacheck
run: ./scripts/style-check.sh