Skip to content

Rename go.yml to build_Go_project.yml #1

Rename go.yml to build_Go_project.yml

Rename go.yml to build_Go_project.yml #1

name: Build Executable from Go project
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v ./...