Skip to content

Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #26

Bump google.golang.org/protobuf from 1.31.0 to 1.33.0

Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #26

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ "main" ]
jobs:
unit:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: make test-run-unit
integration:
name: Run integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Set up Kind
uses: helm/[email protected]
with:
install_only: true
version: v0.20.0
kubectl_version: v1.27.2
- name: Test
env:
MAX_PARALLELISM: 1 # Constrained to 2 CPUs on ubuntu-latest
run: make test-run-int-verbose
helm:
name: Run Helm tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Test
run: make test-run-helm