Skip to content

Create gotest.yml

Create gotest.yml #1

Workflow file for this run

name: Go lang default install
on:
push:
workflow_dispatch:
jobs:
build:
name: Build on macOS 13
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- run: go build -o hello-world
- run: ./hello-world