forked from Simnation/Main
20 lines
No EOL
503 B
YAML
20 lines
No EOL
503 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
lint:
|
|
name: Lint Lua Scripts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Lint
|
|
uses: GoatG33k/fivem-lua-lint-action@v1
|
|
with:
|
|
capture: "junit.xml"
|
|
args: "-t --formatter JUnit"
|
|
- name: Publish Test Report
|
|
uses: mikepenz/action-junit-report@v2
|
|
if: always()
|
|
with:
|
|
report_paths: "**/junit.xml"
|
|
fail_on_failure: 0 |