Skip to content

Tune Go Getting-Started contents #45

Tune Go Getting-Started contents

Tune Go Getting-Started contents #45

Workflow file for this run

name: Go
on:
push:
branches:
- '**'
paths:
- 'go/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
working-directory: go
run: go build -v ./...
- name: Test
working-directory: go
run: go test -v ./...