CI: build & upload Go project

This commit is contained in:
raf 2023-10-27 10:50:29 +03:00 committed by GitHub
parent 86aee3b14b
commit ef42a92c12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,30 @@
name: Go
on:
push:
branches: [ "v2" ]
pull_request:
branches: [ "v2" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v ./.
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.3
with:
# Artifact name
name: "catApi"
# A file, directory or wildcard pattern that describes what to upload
path: "catApi"