1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/nearest-postal-1.5.3/.github/workflows/ci.yml
2025-07-18 20:21:42 +02:00

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