Skip to content

docs: rewrite README for Windows-first positioning + release infrastr… #21

docs: rewrite README for Windows-first positioning + release infrastr…

docs: rewrite README for Windows-first positioning + release infrastr… #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- name: Vet
run: go vet ./...
- name: Test
run: go test -v -coverprofile=coverage.out ./...
- name: Build
run: go build -o traverse .