Skip to content

Merge pull request #11 from kyoshidajp/support_sub_dir #20

Merge pull request #11 from kyoshidajp/support_sub_dir

Merge pull request #11 from kyoshidajp/support_sub_dir #20

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 ./...