Skip to content

Bump Roslynator.Analyzers from 4.11.0 to 4.12.4 in /Source #48

Bump Roslynator.Analyzers from 4.11.0 to 4.12.4 in /Source

Bump Roslynator.Analyzers from 4.11.0 to 4.12.4 in /Source #48

name: build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
debug:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
working-directory: Source
- name: Build
run: dotnet build --configuration Debug --no-restore
working-directory: Source
- name: Test
run: dotnet test --configuration Debug --no-build --verbosity normal
working-directory: Source
release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
working-directory: Source
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: Source
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal
working-directory: Source