on: push: branches: - main - ci pull_request: branches: - main - ci jobs: build: runs-on: ubuntu-latest timeout-minutes: 15 steps: - name: Checkout uses: https://github.com/actions/checkout@v4 - name: Setup Dotnet SDK uses: https://github.com/actions/setup-dotnet@v4 - name: Build run: dotnet build --configuration Release - name: Test run: dotnet test --configuration Release --no-build