Skip to content

Commit

Permalink
Merge pull request #12 from LucasPereiraMiranda/feat/base-build
Browse files Browse the repository at this point in the history
chore: add go build config
  • Loading branch information
LucasPereiraMiranda authored May 13, 2024
2 parents 3c2277d + 285cd3a commit f21e9d5
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: Go

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

0 comments on commit f21e9d5

Please sign in to comment.