Skip to content

Create deploytoS3.yml #7

Create deploytoS3.yml

Create deploytoS3.yml #7

Workflow file for this run

name: Lint Code Base
on:
pull_request:
branches: [main, development, release]
workflow_dispatch: {}
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_BLACK: true
IGNORE_GITIGNORED_FILES: true
IGNORE_GENERATED_FILES: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}