Skip to content

Address CVE SNYK-PYTHON-WERKZEUG-6035177 and SNYK-PYTHON-WERKZEUG-680… #96

Address CVE SNYK-PYTHON-WERKZEUG-6035177 and SNYK-PYTHON-WERKZEUG-680…

Address CVE SNYK-PYTHON-WERKZEUG-6035177 and SNYK-PYTHON-WERKZEUG-680… #96

Workflow file for this run

---
name: V1 Operator Lint & Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
env:
GOLANG_VERSION: 1.20.9
jobs:
operator-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: lint-operator
run: make -C operator lint
operator-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: test-operator
run: make -C operator test