Skip to content

Bump pre-commit from 3.8.0 to 4.1.0 #13

Bump pre-commit from 3.8.0 to 4.1.0

Bump pre-commit from 3.8.0 to 4.1.0 #13

Workflow file for this run

# This workflow executes several linters on changed files based on languages used in your code base whenever
# you push a code or open a pull request.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/github/super-linter
---
name: super-linter
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
on:
pull_request:
branches: ["main"]
jobs:
super-linter:
runs-on: ubuntu-latest
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: Lint Code Base
uses: super-linter/super-linter/slim@v7
env: # To report GitHub Actions status checks
VALIDATE_PYTHON_PYLINT: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}