Skip to content

Commit

Permalink
Merge pull request #26 from D00Med/github-actions
Browse files Browse the repository at this point in the history
switch to github actions for luacheck
  • Loading branch information
thomasrudin committed Nov 28, 2019
2 parents 0e05d47 + 5048061 commit 44fccd5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/luacheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: luacheck

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- 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 ./
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 44fccd5

Please sign in to comment.