Skip to content

feat: show where files are stored (#5) #18

feat: show where files are stored (#5)

feat: show where files are stored (#5) #18

Workflow file for this run

---
name: build
on: push
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...