Skip to content

Normalize line endings for various source files and apply minor forma… #9

Normalize line endings for various source files and apply minor forma…

Normalize line endings for various source files and apply minor forma… #9

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore tools
run: dotnet tool restore
- name: Restore
run: dotnet restore
- name: Build (Release)
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build
- name: CSharpier (check)
run: dotnet csharpier check .