Skip to content

Update text

Update text #1

Workflow file for this run

on:
push:
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
#- run: echo "Hello world"
#- run: go version
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...