Make circular saw and all cut nodes considered as non-ground content #136
Workflow file for this run
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@master | |
- run: | | |
sudo apt-get update -qq | |
sudo apt-get install -qqq luarocks | |
- name: Install pre-commit | |
run: pip3 install pre-commit | |
- name: Install LuaCheck | |
run: luarocks install --local luacheck | |
- name: Run LuaCheck using pre-commit | |
run: | | |
pre-commit run --all-files | |
$HOME/.luarocks/bin/luacheck . |