Skip to content

Bump nodejs20 to 20.6.1 #1020

Bump nodejs20 to 20.6.1

Bump nodejs20 to 20.6.1 #1020

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@v4
- name: Install Dependencies
run: |
sudo apt-get install pylint
- name: Run pylint
shell: bash
run: |
find . -name "*.py" | xargs pylint --disable=R,C