bingo/.gitea/workflows/build.yaml
Seraphim R. Pardee dd62fd2ba8
All checks were successful
build / build (push) Successful in 1m19s
test / test (push) Successful in 1m7s
Apparently workflow_run isn't supported yet...
2024-09-20 00:36:31 -04:00

19 lines
430 B
YAML

name: build
run-name: ${{ gitea.actor }} is building.
on: [push]
needs: [test]
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 ./...