Bump marked from 4.3.0 to 6.0.0 #770
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: Lint Code Base | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: github/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# 本質でないバリデータを排除(余力があればtrueにして直す) | |
VALIDATE_CSS: false | |
VALIDATE_BASH: false | |
VALIDATE_EDITORCONFIG: false | |
VALIDATE_HTML: false | |
VALIDATE_JSCPD: false | |
VALIDATE_JSON: false | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_PHP: false | |
VALIDATE_PHP_PHPCS: false | |
VALIDATE_PYTHON: false | |
VALIDATE_PYTHON_ISORT: false | |
VALIDATE_PYTHON_FLAKE8: false | |
VALIDATE_PYTHON_BLACK: false | |
VALIDATE_SHELL_SHFMT: false | |
VALIDATE_MARKDOWN: false | |