Update Azure Pipeline badge URLs in README.md #203
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: CI | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - feature/** | |
| pull_request: | |
| branches: | |
| - develop | |
| - feature/** | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: PR Build | |
| strategy: | |
| matrix: | |
| config: [debug, release] | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out Source Code | |
| uses: actions/checkout@v3 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v2 | |
| with: | |
| dotnet-version: 8.x | |
| - name: Restore dependencies | |
| run: dotnet restore ApplicationInsights.Kubernetes.sln | |
| - name: Build ApplicationInsights.Kubernetes | |
| run: dotnet build ApplicationInsights.Kubernetes.sln --no-restore --configuration ${{ matrix.config }} | |
| - name: Test | |
| run: dotnet test tests/UnitTests --verbosity normal --configuration ${{ matrix.config }} |