mirror of
https://github.com/NotAShelf/catApi.git
synced 2024-11-01 15:01:13 +00:00
CI: build & upload Go project
This commit is contained in:
parent
86aee3b14b
commit
ef42a92c12
1 changed files with 30 additions and 0 deletions
30
.github/workflows/go.yml
vendored
Normal file
30
.github/workflows/go.yml
vendored
Normal 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"
|
Loading…
Reference in a new issue