APT-606 - Change Foreman To Install Internal Mirrors Instead Of External Tools #113
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install foreman tools | |
uses: Roblox/setup-foreman@v1 | |
with: | |
version: "^1.0.1" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Download global Roblox types | |
shell: bash | |
run: curl -s -O https://raw.githubusercontent.com/JohnnyMorganz/luau-lsp/master/scripts/globalTypes.d.lua | |
- name: Generate sourcemap for LSP | |
shell: bash | |
run: rojo sourcemap default.project.json -o sourcemap.json | |
- name: Analyze | |
shell: bash | |
run: luau-lsp analyze --sourcemap=sourcemap.json --defs=globalTypes.d.lua --defs=testez.d.lua src/ | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: roblox-actionscache/leafo-gh-actions-lua@v8 | |
with: | |
luaVersion: "5.1" | |
- uses: roblox-actionscache/leafo-gh-actions-luarocks@v4 | |
- name: Install dependencies | |
run: | | |
luarocks install luafilesystem | |
luarocks install luacov | |
luarocks install luacov-reporter-lcov | |
- name: install code quality tools | |
uses: Roblox/setup-foreman@v1 | |
with: | |
version: "^1.0.1" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: code quality | |
shell: bash | |
run: | | |
selene src | |
stylua -c src/ | |
- name: install and run darklua | |
run: | | |
cargo install --git https://gitlab.com/seaofvoices/darklua.git#v0.6.0 | |
darklua process src/ src/ --format retain-lines | |
- name: Test | |
run: | | |
lua -lluacov test/lemur.lua | |
luacov -r lcov | |
- name: Report to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: luacov.report.out |