update CODEOWNERS and PR template (#1) #1
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: Code Check | |
on: | |
push: | |
branches: | |
- "main" | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
# enable modules that needed by Istio Dual Stack | |
- run: make lint | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- run: make test | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- run: make build | |
docker: | |
name: docker | |
runs-on: ubuntu-latest | |
needs: build | |
env: | |
HUB: ghcr.io/istio-ecosystem | |
steps: | |
- run: make docker |