Files
Test-Runner/.gitea/workflows/go-test.yml
thecoderatekid feba76125c
Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 5s
.NET Test / dotnet-test (push) Successful in 47s
Go Test / go-test (push) Successful in 20s
Java Test / java-hello (push) Successful in 29s
Julia Test / julia-test (push) Successful in 16s
Kotlin Test / kotlin-hello (push) Successful in 40s
Node.js Test / nodejs-test (push) Failing after 6s
Notebook Test / nb-test (push) Failing after 8s
PHP Test / php-test (push) Successful in 37s
Python Test / python-hello (push) Successful in 4s
R Test / r-cmdcheck (push) Has been cancelled
Rust Test / rust-test (push) Has been cancelled
Scala Test / scala-test (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
Update .gitea/workflows/go-test.yml
2025-08-07 20:50:58 +00:00

38 lines
1.1 KiB
YAML

name: Go Test
on: [push]
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
check-latest: true
- name: Verify Go
run: go version
- name: Run tests (use module/workspace if present; else fallback)
shell: bash
run: |
set -euo pipefail
if [ -f go.mod ] || [ -f go.work ]; then
[ -f go.work ] && go work sync
go test ./...
else
echo "No go.mod or go.work found; creating a tiny module for a smoke test."
printf '%s\n' \
'package main' \
'import "fmt"' \
'func main(){ fmt.Println("hello") }' > main.go
printf '%s\n' \
'package main' \
'import "testing"' \
'func TestMath(t *testing.T){ if 2+2 != 4 { t.Fatal("bad math") } }' > main_test.go
go mod init example.com/ci
go test ./...
fi