Remove old cluster #844
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "linter" | |
'on': | |
pull_request: | |
jobs: | |
tox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build tox container | |
run: | | |
docker build -f tests/tox/Dockerfile -t tox:01 . | |
- name: run tox container | |
run: | | |
docker run tox:01 | |
helm-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build helm-lint container | |
run: | | |
docker build -f tests/helm-lint/Dockerfile -t helm-lint:01 . | |
- name: run helm-lint container | |
run: | | |
docker run helm-lint:01 |