mirror of
https://github.com/NotAShelf/catApi.git
synced 2025-02-22 11:28:10 +00:00
This commit is contained in:
parent
6e73121834
commit
f4ad0b5640
1 changed files with 16 additions and 17 deletions
33
.github/workflows/go.yml
vendored
33
.github/workflows/go.yml
vendored
|
@ -2,29 +2,28 @@ name: Go
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "v2" ]
|
branches: ["v2"]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "v2" ]
|
branches: ["v2"]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v4
|
||||||
with:
|
with:
|
||||||
go-version: '1.20'
|
go-version: "1.23"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v ./.
|
run: go build -v ./..
|
||||||
|
|
||||||
- name: Upload a Build Artifact
|
- name: Upload a Build Artifact
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3.1.3
|
||||||
with:
|
with:
|
||||||
# Artifact name
|
# Artifact name
|
||||||
name: "catApi"
|
name: "catApi"
|
||||||
# A file, directory or wildcard pattern that describes what to upload
|
# A file, directory or wildcard pattern that describes what to upload
|
||||||
path: "catApi"
|
path: "catApi"
|
||||||
|
|
Loading…
Add table
Reference in a new issue