update
All checks were successful
/ test (push) Successful in 1s

This commit is contained in:
Grentenrg 2026-02-27 22:58:03 +01:00
parent 2c0a1a0464
commit 5ab21b46e7
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,6 @@
on: [push]
jobs:
test:
runs-on: docker
steps:
- run: echo All good!

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module test-ci
go 1.25.4

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}