Skip to content

Merge pull request #843 from hjgraca/fix/batch-example-nuget-update #6

Merge pull request #843 from hjgraca/fix/batch-example-nuget-update

Merge pull request #843 from hjgraca/fix/batch-example-nuget-update #6

name: Examples Tests
on:
push:
paths:
- "examples/**"
branches: [develop]
pull_request:
paths:
- "examples/**"
branches: [develop]
defaults:
run:
working-directory: ./examples
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup .NET SDK
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # 4.3.1
with:
dotnet-version: |
6.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /tl
- name: Test Examples
run: dotnet test --no-restore --verbosity normal