mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
b8b5d4094f
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
570 B
YAML
24 lines
570 B
YAML
name: Super Linter
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [master]
|
|
# Remove the line above to run when pushing to master
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint Code Base
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
- uses: github/super-linter@v4.8.1
|
|
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 }}
|