Skip to content

Port Kuttl tests to Ginkgo and enable GH E2E/unit test workflow #4

Port Kuttl tests to Ginkgo and enable GH E2E/unit test workflow

Port Kuttl tests to Ginkgo and enable GH E2E/unit test workflow #4

Workflow file for this run

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