Skip to content

Use Go 1.22 (#39)

Use Go 1.22 (#39) #103

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '*'
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v1
with:
go-version: '1.22'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Create Kubernetes cluster
id: kind
uses: engineerd/[email protected]
with:
version: v0.17.0
- name: Prepare cluster for testing
id: local-path
run: |
echo "waiting for nodes to be ready ..."
kubectl wait --for=condition=Ready nodes --all --timeout=5m
kubectl get nodes
- name: Run checks
run: |
make ci