Skip to content

chore(deps): bump k8s.io/api from 0.29.0 to 0.30.1 #344

chore(deps): bump k8s.io/api from 0.29.0 to 0.30.1

chore(deps): bump k8s.io/api from 0.29.0 to 0.30.1 #344

Workflow file for this run

name: run tests
on:
pull_request:
branches: [ "*" ]
push:
branches:
- "gh-readonly-queue/**/*"
jobs:
testGo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Golang caches
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: run go tests
run: |
go test -v ./...
env:
RUN_INTEGRATION_TESTS: true