Skip to content

Bump github.com/microsoftgraph/msgraph-sdk-go from 1.45.0 to 1.51.0 #219

Bump github.com/microsoftgraph/msgraph-sdk-go from 1.45.0 to 1.51.0

Bump github.com/microsoftgraph/msgraph-sdk-go from 1.45.0 to 1.51.0 #219

Workflow file for this run

name: Build and test PR
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
name: Build and run tests
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.23.2'
check-latest: true
- uses: actions/cache@v4 # ratchet:actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build binary
run: |
go build
- name: install ginkgo
run: |
go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Run tests
run: |
ginkgo ./...