Skip to content

rust: add README.md

rust: add README.md #2

Workflow file for this run

name: Go Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Get dependencies
run: |
cd runtime/golang/helloworld
go mod tidy
- name: Build
run: |
cd runtime/golang/helloworld
go build -v
- name: Test
run: |
cd runtime/golang/helloworld
go test -v