mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-04 21:17:36 +08:00
c9d3cba845
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
540 B
YAML
29 lines
540 B
YAML
name: Code Lint
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- name: Install
|
|
run: |
|
|
. ./ci/common.sh
|
|
export_or_prefix
|
|
export OPENRESTY_VERSION=default
|
|
|
|
./utils/linux-install-openresty.sh
|
|
sudo ./utils/linux-install-luarocks.sh
|
|
sudo luarocks install luacheck
|
|
|
|
- name: Script
|
|
run: |
|
|
. ./ci/common.sh
|
|
export_or_prefix
|
|
make lint
|