Skip to content

Bump gittools/actions from 0.13.2 to 0.13.4 (#86) #202

Bump gittools/actions from 0.13.2 to 0.13.4 (#86)

Bump gittools/actions from 0.13.2 to 0.13.4 (#86) #202

Workflow file for this run

name: CI Build
on:
push:
branches:
- main
- develop
schedule:
- cron: "0 8 * * 1" # At 08:00 on Monday
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