Add serviceclaims/status rights to ControlPlane #186
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: Primazactl pr checks | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build artifacts | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "^1.19" | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
architecture: "x64" | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Lint python | |
run: make lint | |
- name: run dry-run | |
run: make test-dry-run | |
- name: run test | |
run: make test-local-no-setup | |
- name: run test with users | |
run: make test-users | |
- name: run test with output | |
run: make test-output | |
- name: run apply command | |
run: make test-apply | |