feat: Updated generation to use the --ebc flag which excludes backwards compatibility in kiota to reduce the code footprint #87
Workflow file for this run
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: "Build and validate Go generated SDK" | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3.5.0 | |
with: | |
go-version: '1.21.4' | |
- name: Build the SDK | |
run: go build ./... | |
- name: Run unit tests | |
run: go test ./... |