Bug fixes and API client experience enhancements #148
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: build | |
on: | |
push: | |
branches: [ "master", "release/*", "feature/*" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
SOLUTION_NAME: SlimCluster.sln | |
SOLUTION_CONFIGURATION: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: int-tests | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore dependencies | |
run: dotnet restore $SOLUTION_NAME | |
working-directory: ./src | |
- name: Build | |
run: dotnet build $SOLUTION_NAME --configuration $SOLUTION_CONFIGURATION --no-restore | |
working-directory: ./src | |
- name: Test | |
run: dotnet test $SOLUTION_NAME --configuration $SOLUTION_CONFIGURATION --no-build --verbosity normal --logger html --results-directory TestResults | |
working-directory: ./src | |
env: # needed to run integration tests against the test infrastructure | |
azure_servicebus_key: ${{ secrets.azure_servicebus_key }} | |
azure_eventhub_key: ${{ secrets.azure_eventhub_key }} | |
azure_eventhub_storage_key: ${{ secrets.azure_eventhub_storage_key }} | |
kafka_username: ${{ secrets.kafka_username }} | |
kafka_password: ${{ secrets.kafka_password }} | |
redis_password: ${{ secrets.redis_password }} | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dotnet-results | |
path: ./src/TestResults | |
# Use always() to always run this step to publish test results when there are test failures | |
if: ${{ always() }} |