22 lines
477 B
YAML
22 lines
477 B
YAML
|
name: build
|
||
|
run-name: ${{ gitea.actor }} is building.
|
||
|
on:
|
||
|
workflow_run:
|
||
|
workflows: [test]
|
||
|
types:
|
||
|
- completed
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: checkout code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: setup go 1.23.1 and fetch deps
|
||
|
uses: actions/setup-go@v5
|
||
|
with:
|
||
|
go-version: '1.23.1'
|
||
|
cache-dependency-path: go.sum
|
||
|
- name: do the actual build thing
|
||
|
run: go build -v ./...
|