Bump OpenTelemetry.Exporter.OpenTelemetryProtocol from 1.9.0 to 1.15.3 #135
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 & Test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| # env: | |
| # METALAMA_CONSOLE_TRACE: '*' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Set METALAMA_TEMP environment variable | |
| run: echo "METALAMA_TEMP=${{ runner.temp }}" >> ${{ github.env }} | |
| - name: Test using the master build script | |
| shell: pwsh | |
| run: .\Build.ps1 test # --disable-build-servers | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v3 | |
| if: always() | |
| with: | |
| name: artifacts | |
| path: artifacts | |
| - name: Upload temp files | |
| uses: actions/upload-artifact@v3 | |
| if: always() | |
| with: | |
| name: temp | |
| path: ${{ runner.temp }}\Metalama |