mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
chore: split unit tests and linter jobs (#6901)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
c1377b32af
commit
39e51a0047
2 changed files with 42 additions and 14 deletions
41
.github/workflows/lint.yaml
vendored
Normal file
41
.github/workflows/lint.yaml
vendored
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
name: Lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
- 'release*'
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
|
||||||
|
- name: Setup build env
|
||||||
|
uses: ./.github/actions/setup-build-env
|
||||||
|
with:
|
||||||
|
build-cache-key: lint
|
||||||
|
- name: golangci-lint
|
||||||
|
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.0
|
||||||
|
with:
|
||||||
|
version: v1.52.2
|
||||||
|
skip-cache: true
|
||||||
|
- name: go fmt check
|
||||||
|
run: make fmt-check
|
||||||
|
- name: goimports check
|
||||||
|
run: make imports-check
|
||||||
|
- name: Checking unused pkgs using go mod tidy
|
||||||
|
run: make unused-package-check
|
||||||
|
- name: Go vet
|
||||||
|
run: make vet
|
15
.github/workflows/tests.yaml
vendored
15
.github/workflows/tests.yaml
vendored
|
@ -25,19 +25,6 @@ jobs:
|
||||||
- name: Setup build env
|
- name: Setup build env
|
||||||
uses: ./.github/actions/setup-build-env
|
uses: ./.github/actions/setup-build-env
|
||||||
with:
|
with:
|
||||||
build-cache-key: pre-checks
|
build-cache-key: tests
|
||||||
- name: golangci-lint
|
|
||||||
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # v3.4.0
|
|
||||||
with:
|
|
||||||
version: v1.52.2
|
|
||||||
skip-cache: true
|
|
||||||
- name: go fmt check
|
|
||||||
run: make fmt-check
|
|
||||||
- name: goimports check
|
|
||||||
run: make imports-check
|
|
||||||
- name: Checking unused pkgs using go mod tidy
|
|
||||||
run: make unused-package-check
|
|
||||||
- name: Go vet
|
|
||||||
run: make vet
|
|
||||||
- name: Unit test
|
- name: Unit test
|
||||||
run: make test-unit
|
run: make test-unit
|
||||||
|
|
Loading…
Add table
Reference in a new issue