Skip to content

Update to Spice# 3.2.0 #48

Update to Spice# 3.2.0

Update to Spice# 3.2.0 #48

Workflow file for this run

name: Windows Tests
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- name: Setup dotnet tooling
uses: actions/setup-dotnet@master
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Compile Spice#.Behavioral
run: dotnet build SpiceSharpBehavioral/SpiceSharpBehavioral.csproj --configuration Debug --no-restore
- name: Compile Spice#.Behavioral.Test
run: dotnet test SpiceSharpBehavioralTest/SpiceSharpBehavioralTest.csproj --configuration Debug --no-restore