feat: regex pattern in variables #103
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
name: test | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
lua: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
luaVersion: [ "5.2", "5.3", "5.4", "luajit-2.1.0-beta3", "luajit-openresty" ] | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@v3 | |
- name: install Lua/LuaJIT | |
uses: leafo/gh-actions-lua@v8 | |
with: | |
luaVersion: ${{ matrix.luaVersion }} | |
- name: install LuaRocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: install dependencies | |
run: | | |
luarocks install busted | |
luarocks install luacov-coveralls | |
- name: build | |
run: | | |
make install | |
- name: run tests | |
run: | | |
make test-coverage | |
- name: samples | |
run: | | |
lua examples/example.lua | |
lua examples/custom-matcher.lua | |
lua examples/regular-expression.lua | |
- name: report test coverage | |
if: success() | |
continue-on-error: true | |
run: luacov-coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ github.token }} | |
- name: benchmark | |
run: | | |
make bench CMD=lua | |
openresty: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
openrestyVersion: [ "1.19.9.1", "1.21.4.3", "1.25.3.1" ] | |
steps: | |
- name: checkout source code | |
uses: actions/checkout@v3 | |
- name: install Lua/LuaJIT | |
uses: leafo/gh-actions-lua@v8 | |
with: | |
luaVersion: "luajit-openresty" | |
- uses: leafo/gh-actions-openresty@v1 | |
with: | |
openrestyVersion: ${{ matrix.openrestyVersion }} | |
- name: install LuaRocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: install dependencies | |
run: | | |
luarocks install busted | |
luarocks install luacov-coveralls | |
- name: build | |
run: | | |
make install | |
- name: run tests | |
run: | | |
bin/resty_busted --coverage spec/ | |
- name: samples | |
run: | | |
resty examples/example.lua | |
resty examples/custom-matcher.lua | |
resty examples/regular-expression.lua | |
- name: report test coverage | |
if: success() | |
continue-on-error: true | |
run: luacov-coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ github.token }} | |
- name: benchmark | |
run: | | |
make bench CMD=resty |