Skip to content

Bump golang from 9dd2625 to 0974259 #67

Bump golang from 9dd2625 to 0974259

Bump golang from 9dd2625 to 0974259 #67

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
- name: checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- 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