Skip to content

build(deps): bump github.com/vatesfr/xenorchestra-go-sdk #845

build(deps): bump github.com/vatesfr/xenorchestra-go-sdk

build(deps): bump github.com/vatesfr/xenorchestra-go-sdk #845

name: Continuous Integration
on: [ push ]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [ "1.24" ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v5
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Run Unit Tests
run: go test -v .