update integration test
This commit is contained in:
parent
092858c205
commit
65ae4b87de
1 changed files with 11 additions and 11 deletions
10
.github/workflows/integration-tests.yml
vendored
10
.github/workflows/integration-tests.yml
vendored
|
@ -3,11 +3,11 @@ on: # rebuild any PRs and main branch changes
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- 'releases/*'
|
- "releases/*"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- 'releases/*'
|
- "releases/*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-integration-test:
|
run-integration-test:
|
||||||
|
@ -32,18 +32,18 @@ jobs:
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
name: Install Python
|
name: Install Python
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: "3.x"
|
||||||
|
|
||||||
- name: Install requests library
|
- name: Install requests library
|
||||||
run: pip install requests
|
run: pip install requests
|
||||||
|
|
||||||
- name: Validate kubectl setup
|
- name: Validate kubectl setup
|
||||||
run: python test/validate-kubectl.py latest
|
run: python test/validate-kubectl.py !v1.15.1
|
||||||
|
|
||||||
- name: Setup kubectl
|
- name: Setup kubectl
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
version: 'v1.15.1'
|
version: "v1.15.1"
|
||||||
|
|
||||||
- name: Validate kubectl setup
|
- name: Validate kubectl setup
|
||||||
run: python test/validate-kubectl.py 'v1.15.1'
|
run: python test/validate-kubectl.py 'v1.15.1'
|
||||||
|
|
Loading…
Add table
Reference in a new issue