Skip to content

Bump golang from 1.22-alpine to 1.23-alpine #57

Bump golang from 1.22-alpine to 1.23-alpine

Bump golang from 1.22-alpine to 1.23-alpine #57

Workflow file for this run

name: ci
on:
pull_request:
workflow_call:
jobs:
build-and-test:
name: build
runs-on: ubuntu-latest
steps:
- name: setup
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # Setup-go v5
with:
go-version: 1.22
id: go
- name: checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: deps
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go install github.com/onsi/ginkgo/ginkgo
go mod download
- name: test
run: |
export PATH=$PATH:$(go env GOPATH)/bin
make test
- name: integration-test
run: |
export PATH=$PATH:$(go env GOPATH)/bin
make integration-test