Skip to content

Bump github/codeql-action from 2.20.2 to 2.20.4 #975

Bump github/codeql-action from 2.20.2 to 2.20.4

Bump github/codeql-action from 2.20.2 to 2.20.4 #975

Workflow file for this run

name: Pylint
on:
pull_request:
branches: [ 'main' ]
permissions:
contents: read
jobs:
autoformat:
name: Auto-format and Check
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.15.x
uses: actions/setup-go@v4
with:
go-version: 1.15.x
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get install pylint
- name: Run pylint
shell: bash
run: |
find . -name "*.py" | xargs pylint --disable=R,C