bingo/.gitea/workflows/test-n-build.yaml

36 lines
887 B
YAML
Raw Normal View History

2024-09-19 23:52:20 -04:00
name: Test \'N Build
run-name: ${{ gitea.actor }} is testing... \'n building.
on: [push]
jobs:
test:
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 test thing
run: go test -json > testresults-1.23.1.json
- name: upload test results
uses: actions/upload-artifact@v4
with:
name: go-results-1.23.1
path: testresults-1.23.1.json
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 ./...