[UPDATE]: Setup action to build linux release

This commit is contained in:
mjsmagalhaes 2023-02-22 10:56:22 -03:00 committed by GitHub
parent 9a71ecab7d
commit 841615cb9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

35
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,35 @@
# 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: [ "master" ]
pull_request:
branches: [ "master" ]
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
- name: Build
run: go build -v
- name: Test
run: go test -v
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
name: Tweego
path: ./tweego
# The desired behavior if no files are found using the provided path.