kubearmor-client/.github/workflows/ci-go.yml
rootxrishabh 53aba13b91 Added operator CR updation functionality
Signed-off-by: rootxrishabh <risrock02@gmail.com>
2024-03-14 09:08:11 +00:00

75 lines
1.4 KiB
YAML

name: ci-go
on:
push:
branches: [main]
pull_request:
branches: [main]
# Declare default permissions as read only.
permissions: read-all
jobs:
go-build:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Build karmor
run: make
go-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Check gofmt
run: make gofmt
go-sec:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Run Gosec Security Scanner
run: make gosec
go-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Run Revive Action by pulling pre-built imag
uses: morphy2k/revive-action@v2
with:
path: "./..."
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Run unit tests
run: make test