We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8125225 commit d4e44fcCopy full SHA for d4e44fc
.github/workflows/check.yaml
@@ -19,3 +19,23 @@ jobs:
19
run: |
20
gofmt -d -e -s .
21
if [ "$(gofmt -l -s . | wc -l)" -gt 0 ]; then exit 1; fi
22
+
23
+ luacheck:
24
+ runs-on: ubuntu-latest
25
+ if: |
26
+ github.event_name == 'push' ||
27
+ github.event_name == 'pull_request' &&
28
+ github.event.pull_request.head.repo.full_name != github.repository
29
+ steps:
30
+ - uses: actions/checkout@master
31
32
+ - name: Setup Tarantool
33
+ uses: tarantool/setup-tarantool@v1
34
+ with:
35
+ tarantool-version: '2.8'
36
37
+ - name: Setup luacheck
38
+ run: tarantoolctl rocks install luacheck 0.25.0
39
40
+ - name: Run luacheck
41
+ run: ./.rocks/bin/luacheck .
0 commit comments