Merge pull request #161 from steveruckdashel/unchecked-type-convertio… #323
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.19' | |
- name: Install dependencies | |
run: go install | |
working-directory: ${{ env.relativePath }} | |
- name: Build SDK project | |
run: go build | |
working-directory: ${{ env.relativePath }} | |
- name: Test project | |
run: go test ./... | |
working-directory: ${{ env.relativePath }} |