Skip to content

Update gitattributes. (#22) #26

Update gitattributes. (#22)

Update gitattributes. (#22) #26

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
env:
CONFIGURATION: Release
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build -c ${{ env.CONFIGURATION }}
- name: Test
run: dotnet test -c ${{ env.CONFIGURATION }} --no-build --verbosity normal --logger 'GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true'