fix scenario 41 #1616
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Macos M1 | |
on: push | |
jobs: | |
build: | |
name: Build code | |
runs-on: macos-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 |