Skip to content

Bump github.com/microsoftgraph/msgraph-sdk-go-core from 1.1.0 to 1.2.0 #934

Bump github.com/microsoftgraph/msgraph-sdk-go-core from 1.1.0 to 1.2.0

Bump github.com/microsoftgraph/msgraph-sdk-go-core from 1.1.0 to 1.2.0 #934

Workflow file for this run

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