Skip to content

build(deps): bump cloud.google.com/go/storage from 1.43.0 to 1.44.0 (… #969

build(deps): bump cloud.google.com/go/storage from 1.43.0 to 1.44.0 (…

build(deps): bump cloud.google.com/go/storage from 1.43.0 to 1.44.0 (… #969

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: build
run: make build
unit-test:
runs-on: ubuntu-latest
env:
SKIP_TESTS: true
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.10.0
with:
cluster_name: cluster
- name: Set k8s provider
run: |
kubectl create namespace test-namespace
kubectl create secret generic mysecret -n test-namespace --from-literal=key=p4ssw0rd
kubectl create configmap myconfigmap -n test-namespace --from-literal=key=configValue
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: test
run: make test