Skip to content

chore: gitattributes - add explicite eol=crlf to cs files #7

chore: gitattributes - add explicite eol=crlf to cs files

chore: gitattributes - add explicite eol=crlf to cs files #7

Workflow file for this run

name: Build # integration build
env:
sln-path: "./src/atin.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@v3
with:
dotnet-version: '8.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