Add CI configuration file #2
This file contains hidden or 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: CI | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Stylua | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y stylua | |
- name: Run Stylua | |
run: | | |
stylua --config-path .stylua.toml . --exclude lib/cc-tweaked | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Lua-Language-Server | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y lua-language-server | |
- name: Run Lua-Language-Server | |
continue-on-error: true | |
run: | | |
lua-language-server --logpath . --check . | |
- name: Parse Lua-Language-Server Output | |
run: | | |
lua parse_lua_ls_output.lua ./check.json |