Upgrade to Argo Rollouts v1.6.4 #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint code | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
lint_code: | |
name: Run golangci-lint and gosec on PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: "run gosec" | |
run: | | |
cd $GITHUB_WORKSPACE | |
make gosec | |
- name: "run golangci-lint" | |
run: | | |
cd $GITHUB_WORKSPACE | |
make lint |