Add trace_id to GolemNode startup and shutdown to improve multiple Go… #375
Workflow file for this run
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
name: Integration tests CI | |
on: | |
push: | |
branches: | |
- main | |
- b0.* | |
pull_request: | |
branches: | |
- main | |
- b0.* | |
jobs: | |
tests-integration: | |
name: Run checks | |
runs-on: goth2 | |
steps: | |
- run: rm -rf /root/.cache/ | |
- run: rm -rf /tmp/goth-tests/ | |
- run: apt-get update | |
- run: apt install -y python3.10-venv | |
- uses: actions/checkout@v3 | |
- name: Run tests action | |
uses: './.github/actions/integration-tests-goth' | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload test logs | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: goth-logs | |
path: /tmp/goth-tests |