This repository has been archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maksim Konovalov
committed
Sep 14, 2024
1 parent
c013b51
commit bb765d2
Showing
3 changed files
with
106 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Run checks | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
luacheck: | ||
runs-on: ubuntu-latest | ||
if: | | ||
github.event_name == 'push' || | ||
github.event_name == 'pull_request' && | ||
github.event.pull_request.head.repo.full_name != github.repository | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Setup Tarantool | ||
uses: tarantool/setup-tarantool@v2 | ||
with: | ||
tarantool-version: '2.8' | ||
|
||
- name: Setup tt | ||
run: | | ||
curl -L https://tarantool.io/release/2/installer.sh | sudo bash | ||
sudo apt install -y tt | ||
tt version | ||
- name: Setup luacheck | ||
run: tt rocks install luacheck 0.25.0 | ||
|
||
- name: Run luacheck | ||
run: ./.rocks/bin/luacheck . | ||
|
||
golangci-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
continue-on-error: true | ||
with: | ||
# The first run is for GitHub Actions error format. | ||
args: --config=.golangci.yaml | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3 | ||
with: | ||
# The second run is for human-readable error format with a file name | ||
# and a line number. | ||
args: --out-${NO_FUTURE}format colored-line-number --config=.golangci.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
std = "luajit" | ||
codes = true | ||
|
||
read_globals = { | ||
-- Tarantool vars: | ||
"box", | ||
"tonumber64", | ||
|
||
"spacer", | ||
"F", | ||
"T", | ||
|
||
package = { | ||
fields = { | ||
reload = { | ||
fields = { | ||
"count", | ||
"register", | ||
} | ||
} | ||
} | ||
}, | ||
|
||
-- Exported by package 'config' | ||
"config", | ||
} | ||
|
||
max_line_length = 200 | ||
|
||
ignore = { | ||
"212", | ||
"213", | ||
"411", -- ignore was previously defined | ||
"422", -- ignore shadowing | ||
} | ||
|
||
local conf_rules = { | ||
read_globals = { | ||
"instance_name", | ||
}, | ||
globals = { | ||
"box", "etcd", | ||
} | ||
} | ||
|
||
exclude_files = { | ||
"tests/tnt/.rocks/*", | ||
} | ||
|
||
|
||
files["etc/*.lua"] = conf_rules |