chore: gitattributes - add explicite eol=crlf to cs files #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |