fix(): offboard ns when invalid labels are applied to ns #954
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: build-test-worker-operator | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
- 'release-*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/build-push-action@v2 | |
with: | |
tags: worker-operator:latest | |
push: false | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/build-push-action@v2 | |
with: | |
file: test.Dockerfile | |
tags: test-image:latest | |
push: false | |
- uses: addnab/docker-run-action@v3 | |
with: | |
image: test-image:latest | |
run: make test |