Skip to content

chore(deps): bump k8s.io/apimachinery from 0.25.4 to 0.29.0 in /provisioner #379

chore(deps): bump k8s.io/apimachinery from 0.25.4 to 0.29.0 in /provisioner

chore(deps): bump k8s.io/apimachinery from 0.25.4 to 0.29.0 in /provisioner #379

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
gotest:
name: Format Check, Analysis and Unit Test
strategy:
matrix:
go-version: [1.18]
os: [ubuntu-latest, macos-latest]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Use cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run Test
run: |
make test-all
git diff --exit-code