-
Notifications
You must be signed in to change notification settings - Fork 39
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
Showing
15 changed files
with
158 additions
and
45 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,8 @@ | ||
return { | ||
default = { | ||
--helper = "spec/configure-log.lua", | ||
verbose = true, | ||
coverage = false, | ||
output = "gtest", | ||
}, | ||
} |
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,38 @@ | ||
name: Lint | ||
|
||
concurrency: | ||
# for PR's cancel the running task, if another commit is pushed | ||
group: ${{ github.workflow }} ${{ github.ref }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
on: | ||
# build on PR and push-to-main. This works for short-lived branches, and saves | ||
# CPU cycles on duplicated tests. | ||
# For long-lived branches that diverge, you'll want to run on all pushes, not | ||
# just on push-to-main. | ||
pull_request: {} | ||
push: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: leafo/gh-actions-lua@v8 | ||
with: | ||
luaVersion: "5.4" | ||
|
||
- uses: leafo/gh-actions-luarocks@v4 | ||
|
||
- name: dependencies | ||
run: | | ||
luarocks install luacheck | ||
- name: lint | ||
run: | | ||
make check |
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,55 @@ | ||
name: "Unix build" | ||
|
||
concurrency: | ||
# for PR's cancel the running task, if another commit is pushed | ||
group: ${{ github.workflow }} ${{ github.ref }} | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
on: | ||
# build on PR and push-to-main. This works for short-lived branches, and saves | ||
# CPU cycles on duplicated tests. | ||
# For long-lived branches that diverge, you'll want to run on all pushes, not | ||
# just on push-to-main. | ||
pull_request: {} | ||
push: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-20.04 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
luaVersion: ["5.1", "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty"] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: leafo/gh-actions-lua@v8 | ||
with: | ||
luaVersion: ${{ matrix.luaVersion }} | ||
|
||
- uses: leafo/gh-actions-luarocks@v4 | ||
|
||
- name: dependencies | ||
run: | | ||
make install | ||
luarocks install luacov-coveralls | ||
luarocks install busted | ||
make start_app | ||
- name: test | ||
run: | | ||
busted --coverage | ||
make kill_server | ||
- name: Report test coverage | ||
if: success() | ||
continue-on-error: true | ||
run: luacov-coveralls | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ github.token }} |
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,32 @@ | ||
unused_args = false | ||
redefined = false | ||
max_line_length = false | ||
|
||
globals = { | ||
-- "ngx", | ||
} | ||
|
||
not_globals = { | ||
-- deprecated Lua 5.0 functions | ||
"string.len", | ||
"table.getn", | ||
} | ||
|
||
include_files = { | ||
"**/*.lua", | ||
"**/*.rockspec", | ||
".busted", | ||
".luacheckrc", | ||
} | ||
|
||
files["spec/**/*.lua"] = { | ||
std = "+busted", | ||
} | ||
|
||
exclude_files = { | ||
-- The Github Actions Lua Environment | ||
".lua", | ||
".luarocks", | ||
".install", | ||
} | ||
|
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,5 @@ | ||
modules = { | ||
["homie45.*"] = "src" | ||
} | ||
|
||
runreport = true |
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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
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
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
File renamed without changes.