Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/roang-zero1/factorio-mod-luacheck

Run a Factorio mod source through luacheck
https://github.com/roang-zero1/factorio-mod-luacheck

actions ci continuous-integration factorio linting lua

Last synced: 23 days ago
JSON representation

Run a Factorio mod source through luacheck

Awesome Lists containing this project

README

        

# GitHub Action for luacheck

[![release badge][release status]][release workflow]

This action will run your mod code through [luacheck](https://github.com/mpeterv/luacheck).

## Usage

This action can be used with a repository contain a Factorio mod at base level.

The action can be used as follows:

```yaml
on: push
name: Check & Release
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: lint
uses: Roang-zero1/factorio-mod-luacheck@master
with:
luacheckrc_url: https://raw.githubusercontent.com/Nexela/Factorio-luacheckrc/0.17/.luacheckrc
```

## Sample Workflow

A sample workflow that uses this action can be found at [Roang-zero1/factorio-mod-actions](https://github.com/Roang-zero1/factorio-mod-actions/blob/master/sample/push-check-release.yml)

## Inputs

### `luacheckrc_url`

URL to the luacheckrc configuration file to be used during checking.
**Default**:
If you assign an empty string "" the .luacheck file from the working tree will be used.

## Recommended luacheckrc

For current luacheckrc to use with factorio I recommend [Nexela/Factorio-luacheckrc](https://github.com/Nexela/Factorio-luacheckrc)

[release status]: https://github.com/Roang-zero1/factorio-mod-luacheck/workflows/Check%20&%20Release/badge.svg
[release workflow]: https://github.com/Roang-zero1/factorio-mod-luacheck/actions