Skip to content

Merge pull request #9 from InteractiveAgents/dependabot/github_action… #36

Merge pull request #9 from InteractiveAgents/dependabot/github_action…

Merge pull request #9 from InteractiveAgents/dependabot/github_action… #36

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 11.0.x
dotnet-quality: preview
- name: Restore
run: dotnet restore IAW.slnx
- name: Build
run: dotnet build IAW.slnx --no-restore --configuration Release
# - name: Test
# run: dotnet test IAW.slnx --no-build --configuration Release --verbosity normal