Add go_hello workflow
Some checks failed
/ test (push) Failing after 13s

This commit is contained in:
Andrea Fazzi 2024-11-10 15:21:22 +01:00
parent b4c1482217
commit f40eb54c62
2 changed files with 12 additions and 6 deletions

View file

@ -1,6 +0,0 @@
on: [push]
jobs:
test_docker:
runs-on: ubuntu-22.04
steps:
- run: docker info

View 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