This commit is contained in:
parent
b4c1482217
commit
f40eb54c62
2 changed files with 12 additions and 6 deletions
|
@ -1,6 +0,0 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test_docker:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- run: docker info
|
12
.forgejo/workflows/go_hello.yaml
Normal file
12
.forgejo/workflows/go_hello.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.16.1' # The Go version to download (if necessary) and use.
|
||||
- run: go run hello.go
|
||||
|
||||
|
Loading…
Reference in a new issue