Skip to content

Support downloading the vGPU license #46

Support downloading the vGPU license

Support downloading the vGPU license #46

Workflow file for this run

name: CodeLint
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: autopep8
id: autopep8
uses: peter-evans/autopep8@v2
with:
args: --exit-code --jobs 0 --recursive --in-place --aggressive --aggressive .
- name: Annotate diff changes using reviewdog
if: steps.autopep8.outputs.exit-code == 2
uses: reviewdog/action-suggester@v1
with:
tool_name: autopep8
- name: Fail if autopep8 made changes
if: steps.autopep8.outputs.exit-code == 2
run: exit 1
- name: Check the Shell scripts
uses: azohra/shell-linter@latest