Update candles_3d
. Fixes #1096
#760
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
# Linting via luacheck | |
name: Lint (luacheck) | |
on: | |
push: | |
branches: [ master, dev ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo recursively | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
fetch-depth: 30 | |
- name: Install LuaCheck | |
run: | | |
sudo apt-get install luarocks | |
luarocks install --local luacheck | |
- name: Run linter | |
run: | | |
$HOME/.luarocks/bin/luacheck . |