Skip to content

city: implement buy button (#303) #1603

city: implement buy button (#303)

city: implement buy button (#303) #1603

Workflow file for this run

name: Build Windows
on: push
jobs:
build:
name: Build code
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '>=1.23.0'
- name: Install go dependencies
run: |
go get ./...
go mod tidy
- name: Vet
run: go vet ./...
- name: Build
run: go build ./game/magic