FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build_test: runs-on: windows-latest steps: - name: Checkout uses: actions/checkout@v7 - name: Setup .NET SDK uses: actions/setup-dotnet@v6 with: dotnet-version: '10.0.x' - name: Show dotnet info run: dotnet --info - name: Cache NuGet packages uses: actions/cache@v6 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj', '**/Directory.Packages.props', '**/global.json', '**/nuget.config') }} restore-keys: | nuget-${{ runner.os }}- - name: Restore run: dotnet restore --nologo - name: Build (Release) run: dotnet build --configuration Release --nologo -warnaserror - name: Test (Release) run: dotnet test --configuration Release --nologo --no-build

Back | FazBrowse Home | New Git URL