Skip to content

Adding Primaza-Identity-Namespace #185

Adding Primaza-Identity-Namespace

Adding Primaza-Identity-Namespace #185

Workflow file for this run

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