Bump golang from 0d3653d
to 562abef
#55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |