# ------------------------------------------------------------------------------ # # # This code was generated. # # - To turn off auto-generation set: # # [CustomGitHubActions (AutoGenerate = false)] # # - To trigger manual generation invoke: # # nuke --generate-configuration GitHubActions_pr --host GitHubActions # # # ------------------------------------------------------------------------------ name: pr on: pull_request: branches: - main - 'patch/*' - 'develop/*' paths: - '**/*' concurrency: group: ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }} cancel-in-progress: true jobs: ubuntu-latest: name: ubuntu-latest runs-on: ubuntu-latest steps: - uses: actions/setup-dotnet@v4 with: dotnet-version: | 10.x - uses: actions/checkout@v6 - name: 'Run: Compile, Test' run: ./build.cmd Compile Test