added hello_world_updated.py #3
This file contains hidden or 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
################################################## | |
# Run Mr Coxall's Super Linter against code base # | |
################################################## | |
--- | |
name: Mr Coxall's Super Linter | |
on: [push, pull_request] | |
jobs: | |
run-linters: | |
name: Mr Coxall's Super Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@main | |
# remove section if you do not have any htm, js or ts files! | |
- name: Prettify code | |
uses: Mr-Coxall/prettier_action@main | |
with: | |
# run Prettier and change code that needs fixing, before next section | |
prettier_options: --write **/*.{html,css,js,ts,jsx,tsx,json} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run GitHub Super Linter | |
uses: github/super-linter@main | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
LINTER_RULES_PATH: / | |
VALIDATE_CLANG_FORMAT: false | |
VALIDATE_JAVASCRIPT_STANDARD: false | |
VALIDATE_PYTHON_FLAKE8: false | |
VALIDATE_GITLEAKS: false # for secrets detection | |
VALIDATE_JSCPD: false # for copy and paste detection | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |