mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
f9378f45b9
Run Super-Linter only once
19 lines
446 B
YAML
19 lines
446 B
YAML
name: Super Linter
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint Code Base
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: github/super-linter@v4.9.2
|
|
env:
|
|
ERROR_ON_MISSING_EXEC_BIT: true
|
|
VALIDATE_BASH: true
|
|
# VALIDATE_BASH_EXEC: true
|
|
# VALIDATE_EDITORCONFIG: true
|
|
# VALIDATE_SHELL_SHFMT: true
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|