name: .NET on: push: branches: [main, dev, "releases/**"] pull_request: branches: [main, dev, "releases/**"] jobs: build: timeout-minutes: 15 continue-on-error: true runs-on: ${{ matrix.platforms }} env: NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages strategy: matrix: dotnet: ["8.0.x"] platforms: ["ubuntu-latest", "windows-latest", "macos-latest"] steps: - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v3 with: dotnet-version: ${{ matrix.dotnet }} - name: Install dependencies run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore test: needs: build timeout-minutes: 15 continue-on-error: true runs-on: "ubuntu-latest" env: NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages strategy: matrix: dotnet: ["8.0.x"] steps: - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v3 with: dotnet-version: ${{ matrix.dotnet }} - name: Install dependencies run: dotnet restore - name: Test run: dotnet test --no-restore