Skip to content

Update Mindbox.Analyzers.sln #87

Update Mindbox.Analyzers.sln

Update Mindbox.Analyzers.sln #87

Workflow file for this run

name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build ./Mindbox.Analyzers.sln --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore