catApi/.github/workflows/go.yml
NotAShelf c8e8f5467a
Some checks failed
Go / build (push) Has been cancelled
ci: fix build?
2025-02-11 00:39:52 +03:00

27 lines
462 B
YAML

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.23"
- name: Build
run: go build -v .
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: "catApi"
path: "catApi"