Skip to content

Disable mypy and flake8 on pr #28

Disable mypy and flake8 on pr

Disable mypy and flake8 on pr #28

Workflow file for this run

---
name: main-linting
on:
workflow_dispatch:
push:
branches:
- main
jobs:
linting:
name: "linting"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: linting
uses: github/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}