Skip to content

Bump golang.org/x/net from 0.10.0 to 0.23.0 in /src/gpt_api_integration #64

Bump golang.org/x/net from 0.10.0 to 0.23.0 in /src/gpt_api_integration

Bump golang.org/x/net from 0.10.0 to 0.23.0 in /src/gpt_api_integration #64

Workflow file for this run

name: Go_Src_hello_world
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
cd src/helloworld
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: |
cd src/helloworld
go build -v .
- name: Unit test
run: |
cd src/helloworld
go test