Skip to content

chore: add migration guide for v5 #659

chore: add migration guide for v5

chore: add migration guide for v5 #659

Workflow file for this run

name: Pull request
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-13
- os: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dotnet format tool
run: dotnet tool install -g dotnet-format
- name: Verify formatting
run: dotnet format --verify-no-changes
env:
PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools
- name: Run tests
run: dotnet test tests/Unleash.Tests/Unleash.Tests.csproj --no-restore --verbosity normal