Skip to content

14 upgrade to net 9

14 upgrade to net 9 #3

Workflow file for this run

name: FIX Client
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
- name: Publish
run: dotnet publish -c Release
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: FixClient
path: FixClient/bin/Release/net9.0-windows/win-x64/publish/FixClient.exe
overwrite: true