Bump jetty-server.version from 12.0.18 to 12.0.19 #404
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: OpenTelemetry Acceptance Tests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| acceptance-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| with: | |
| experimental: 'true' # to get lock file support and for go backend | |
| - name: Run acceptance tests | |
| run: ./scripts/run-acceptance-tests.sh | |
| - name: upload log file | |
| uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: OATs logs | |
| path: build/**/*.log |