Skip to content

Merge pull request #140 from microsoft/feature/go-version #233

Merge pull request #140 from microsoft/feature/go-version

Merge pull request #140 from microsoft/feature/go-version #233

Workflow file for this run

name: Go
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
relativePath: ./
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Install dependencies
run: go install
working-directory: ${{ env.relativePath }}
- name: Build SDK project
run: go build
working-directory: ${{ env.relativePath }}