Skip to content

Library Refactor for DotNet 8 and Signature Version 5 #44

Library Refactor for DotNet 8 and Signature Version 5

Library Refactor for DotNet 8 and Signature Version 5 #44

Workflow file for this run

name: .NET CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
# Build and test on .NET Core
dotnet-core-ci:
name: .NET Core - test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build solution
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal --logger:"trx;LogFileName=TestResults.xml"
# - name: Run linter
# run: dotnet format --verify-no-changes