name: Windows CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: name: Windows Build and Unit Tests runs-on: windows-latest steps: - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v5 with: go-version: '1.24' - name: Configure Git run: | git config --global user.name "CI Bot" git config --global user.email "ci@gastown.test" - name: Build run: go build -v ./cmd/gt - name: Unit Tests run: go test -short ./...