This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
AB#135004: Missing client secret in token refresh #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test HutchAgent | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
paths: | |
- app/HutchAgent/** | |
- test/HutchAgent.Tests/** | |
- .github/workflows/build.HutchAgent.yml | |
env: | |
# Configure these | |
CI_build-config: Release | |
CI_dotnet-version: 7.0.x | |
Agent_project: ./app/HutchAgent/HutchAgent.csproj | |
Agent_test_project: ./test/HutchAgent.Tests/HutchAgent.Tests.csproj | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: ${{ env.CI_dotnet-version }} | |
- name: Build HutchAgent | |
run: >- | |
dotnet build | |
${{ env.Agent_project }} | |
-c ${{ env.CI_build-config }} | |
- name: Run HutchAgent.Tests | |
run: >- | |
dotnet test | |
${{ env.Agent_test_project }} | |
-c ${{ env.CI_build-config }} |