Skip to content

Java: Build updates in prep for package publication #9

Java: Build updates in prep for package publication

Java: Build updates in prep for package publication #9

Workflow file for this run

name: .NET Core (Windows)
on:
push:
branches: [master]
paths:
- "cs/**"
- ".github/**"
pull_request:
branches: [master]
paths:
- "cs/**"
- ".github/**"
defaults:
run:
working-directory: cs
jobs:
ci-mswin:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
- name: MSVC CI
run: dotnet build
- name: Install dependencies
run: dotnet restore GS1GMN.sln
- name: Build
run: dotnet build GMN/GMN.csproj --configuration Release --no-restore
- name: Test
run: dotnet test GMNTests/GMNTests.csproj --no-restore --verbosity normal