Skip to content

Merge pull request #12 from kyoshidajp/add_launch_settings_in_vscode #21

Merge pull request #12 from kyoshidajp/add_launch_settings_in_vscode

Merge pull request #12 from kyoshidajp/add_launch_settings_in_vscode #21

Workflow file for this run

name: go
on:
push:
paths:
- "**.go"
- go.mod
- go.sum
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...