Skip to content

bump to go 1.21.0

bump to go 1.21.0 #91

Workflow file for this run

name: Integation Tests
on:
pull_request:
branches: [ main ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
- name: Build Go
run: make linux
- name: Build Docker
uses: docker/build-push-action@v4
with:
context: .
tags: ghcr.io/cloudfoundry/bosh-compile-action:main
push: false
- name: Run Tests
run: |
go get github.com/onsi/ginkgo/[email protected]
make e2e