https://github.com/nyancatda/renpylint
GitHub action script for linter testing the Ren'Py project, RenPy action
https://github.com/nyancatda/renpylint
Last synced: 2 months ago
JSON representation
GitHub action script for linter testing the Ren'Py project, RenPy action
- Host: GitHub
- URL: https://github.com/nyancatda/renpylint
- Owner: nyancatda
- Created: 2023-11-08T17:26:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T07:12:19.000Z (over 1 year ago)
- Last Synced: 2025-01-04T06:21:27.960Z (4 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ren'Py Lint
GitHub action script for linter testing the Ren'Py project## Use
``` yml
- name: Lint
uses: nyancatda/RenpyLint@main
with:
sdk_version: '8.1.3'
```## Available parameters
- `sdk_version` Ren'Py SDK version
- `project_path` Project folder path## Cache
The script will store the downloaded SDK in `~/renpy-${sdk_version}-sdk`, and you can configure the cache yourselfExample
``` yml
- name: Restore Renpy SDK Cache
id: restore-cache
uses: actions/cache@v3
with:
path: /home/runner/work/_temp/_github_home/renpy-8.1.3-sdk
key: renpy-8.1.3-sdk- name: Lint
id: lint
uses: nyancatda/RenpyLint@main
with:
sdk_version: '8.1.3'
```## Thank
1. [ProjectAliceDev/renpy-lint-action](https://github.com/ProjectAliceDev/renpy-lint-action) Provides basic ideas