Skip to content

Bump nvidia/cuda from 10.2-runtime-ubuntu18.04 to 12.1.0-runtime-ubuntu18.04 in /infra/docker/obs #904

Bump nvidia/cuda from 10.2-runtime-ubuntu18.04 to 12.1.0-runtime-ubuntu18.04 in /infra/docker/obs

Bump nvidia/cuda from 10.2-runtime-ubuntu18.04 to 12.1.0-runtime-ubuntu18.04 in /infra/docker/obs #904

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- main
tags:
- v*
jobs:
golint:
name: golint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golint
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
golangci_lint_flags: "--disable-all -E golint"
level: warning # GitHub Status Check won't become failure with this level.
errcheck:
name: errcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: errcheck
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
golangci_lint_flags: "--disable-all -E errcheck"
misspell:
name: misspell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"
# ignore the chat handlers file cause it has many typos
exclude: pkg/chatbot/handlers.go