bingo/.gitea/workflows/test.yaml
Seraphim R. Pardee df24f41bb3
All checks were successful
test / test (push) Successful in 1m10s
Divide workflows and give them order, add badges.
2024-09-20 00:33:32 -04:00

22 lines
608 B
YAML

name: test
run-name: ${{ gitea.actor }} is testing.
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: christopherhx/gitea-upload-artifact@v4
with:
name: go-results-1.23.1
path: testresults-1.23.1.json