Skip to content

Backport main branch test fixes to release-0.0.5 #484

Backport main branch test fixes to release-0.0.5

Backport main branch test fixes to release-0.0.5 #484

Workflow file for this run

name: Lint code
on:
push:
branches:
- 'main'
- 'release-*'
pull_request:
branches:
- '*'
jobs:
lint_code:
name: Run golangci-lint and gosec
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Golang
uses: actions/[email protected]
with:
go-version-file: './go.mod'
- name: "run gosec"
run: |
cd $GITHUB_WORKSPACE
make gosec
- name: "run golangci-lint"
run: |
cd $GITHUB_WORKSPACE
make lint