name: .NET Test on: [push] jobs: dotnet-test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Set up .NET uses: actions/setup-dotnet@v2 with: dotnet-version: '7.0.x' - name: Restore packages run: dotnet restore - name: Build run: dotnet build --no-restore --configuration Release - name: Test run: dotnet test --no-build --verbosity normal