mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-05 21:47:36 +08:00
31 lines
591 B
YAML
31 lines
591 B
YAML
name: Code Lint
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master, 'release/**']
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**/*.md'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
- name: Install
|
|
run: |
|
|
. ./ci/common.sh
|
|
export_or_prefix
|
|
export OPENRESTY_VERSION=default
|
|
|
|
./utils/linux-install-openresty.sh
|
|
./utils/linux-install-luarocks.sh
|
|
sudo luarocks install luacheck
|
|
|
|
- name: Script
|
|
run: |
|
|
. ./ci/common.sh
|
|
export_or_prefix
|
|
make lint
|