mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
* feat: add simple conformance tests Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Co-authored-by: Vyankatesh Kudtarkar <vyankateshkd@gmail.com>
21 lines
561 B
YAML
21 lines
561 B
YAML
name: Conformance tests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
- 'release*'
|
|
|
|
jobs:
|
|
run-conformace:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # pin@v3
|
|
- name: Unshallow
|
|
run: git fetch --prune --unshallow
|
|
- name: Setup go
|
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # pin@v3
|
|
with:
|
|
go-version: ~1.18.6
|
|
- name: Kyverno conformance tests
|
|
run: go run ./test/conformance/main.go
|