Skip to content

Fix/workflow lint

Fix/workflow lint #6

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
push:
branches:
- main
pull_request:
branches:
- main
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
VALIDATE_PYTHON_FLAKE8: true
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN_FOR_WORKFLOW }}
PYTHON_FLAKE8_CONFIG_FILE: .flake8