Skip to content

dotnet: add wserver .gitignore #12

dotnet: add wserver .gitignore

dotnet: add wserver .gitignore #12

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'
cache-dependency-path: |
runtime/golang/helloworld/go.sum
- name: Install libuuid1 uuid-dev
run: |
sudo apt update
sudo apt install -y libuuid1 uuid-dev
- name: Get dependencies
run: |
cd runtime/golang/helloworld
go mod tidy
- name: Build
run: |
cd runtime/golang/helloworld
go build
./helloworld
- name: Test
run: |
cd runtime/golang/helloworld
go test -v