Skip to content

Bump gittools/actions from 0.13.4 to 1.1.0 #88

Bump gittools/actions from 0.13.4 to 1.1.0

Bump gittools/actions from 0.13.4 to 1.1.0 #88

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