Skip to content

product version set to 2.5.24 #412

product version set to 2.5.24

product version set to 2.5.24 #412

Workflow file for this run

name: Build
env:
sln-path: "./src/xtb.xapi.sln"
on:
workflow_dispatch:
push:
paths:
- 'src/**'
- '!src/**.sln' # ignore sln changes
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: .NET Info
run: dotnet --info
- name: Restore dependencies
run: dotnet restore "${{ env.sln-path }}"
- name: Build debug
run: dotnet build "${{ env.sln-path }}" --no-restore -c Debug
- name: Test
run: dotnet test "${{ env.sln-path }}" --no-build --logger "trx;LogFileName=test-results.trx" || true