name: CLI Tests on: pull_request: workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup .NET uses: actions/setup-dotnet@v3 with: dotnet-version: 10.0.x - name: Restore run: dotnet restore - name: Check Formatting run: dotnet format --verify-no-changes - name: Build run: dotnet build --no-restore --configuration Release - name: Test run: dotnet test Tests --no-build --configuration Release --verbosity normal