mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
Add simple regression test for openapi2jsonschema
This commit is contained in:
parent
dfd7a5a102
commit
468d42f556
1 changed files with 14 additions and 2 deletions
16
.github/workflows/main.yml
vendored
16
.github/workflows/main.yml
vendored
|
|
@ -1,7 +1,7 @@
|
|||
name: ci
|
||||
on: push
|
||||
jobs:
|
||||
test:
|
||||
kubeconform-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
|
|
@ -16,9 +16,21 @@ jobs:
|
|||
- name: acceptance-test
|
||||
run: make docker-acceptance
|
||||
|
||||
openapi2jsonschema-test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: acceptance-test
|
||||
working-directory: ./scripts
|
||||
run: make docker-acceptance
|
||||
|
||||
goreleaser:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test
|
||||
needs:
|
||||
- kubeconform-test
|
||||
- openapi2jsonschema-test
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
steps:
|
||||
- name: checkout
|
||||
|
|
|
|||
Loading…
Reference in a new issue