This repository was archived by the owner on Aug 2, 2026. It is now read-only.
Allow http client override to work #252
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| timeout-minutes: 20 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dotnet: | |
| - 9.x | |
| arango: | |
| - "arangodb:3.11" | |
| # - "arangodb:3.10" | |
| # - "arangodb/enterprise:3.9" | |
| topology: | |
| - single | |
| # - cluster | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: chmod | |
| run: find ./docker -name '*.sh' | xargs chmod +x | |
| - name: arango | |
| run: ./docker/start_db_${{ matrix.topology }}_retry_fail.sh ${{ matrix.arango }} | |
| env: | |
| ARANGO_LICENSE_KEY: ${{ secrets.ARANGO_LICENSE_KEY }} | |
| - name: dotnet | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet }} | |
| - name: build | |
| run: dotnet build --configuration Release | |
| - name: test | |
| run: dotnet test --configuration Release | |
| env: | |
| ARANGODB_CONNECTION: "Server=http://172.28.3.1:8529;Realm=CI-{UUID};User=root;Password=test;" |