Skip to content

Commit

Permalink
ci: created go.yml containing basic workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
codingonapotato authored Jan 28, 2024
1 parent 774b56a commit f61c9be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: build-go-project

on: push

jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Go version
uses: actions/setup-go@v4
with:
go-version: '1.21.3'

- name: Build Go files in every directory recursively
run: go build -v ./...

0 comments on commit f61c9be

Please sign in to comment.