Skip to content

Bump gittools/actions from 1.1.0 to 1.1.1 #89

Bump gittools/actions from 1.1.0 to 1.1.1

Bump gittools/actions from 1.1.0 to 1.1.1 #89

Workflow file for this run

name: PR CI Build
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18.1
- name: Check out source code
uses: actions/checkout@v4
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
working-directory: src
run: go build
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
working-directory: src
run: go test -v