chore(deps): bump tracing-subscriber from 0.3.19 to 0.3.20 in the cargo group across 1 directory #1190
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: compliance 06 | |
| jobs: | |
| compliance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 - | |
| - run: pip install jq yq | |
| - run: sudo apt-get update && sudo apt-get install -y libxml2-utils | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Checkout Rundler | |
| uses: actions/checkout@v4 | |
| with: | |
| path: rundler | |
| submodules: recursive | |
| - uses: KengoTODA/actions-setup-docker-compose@v1 | |
| with: | |
| version: "2.14.2" | |
| - name: Clone Test Executor | |
| uses: actions/checkout@v4 | |
| with: | |
| path: bundler-test-executors | |
| repository: alchemyplatform/bundler-test-executor | |
| ref: releases/v0.6 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: rundler | |
| push: false | |
| load: true | |
| tags: alchemyplatform/rundler:latest | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Run bundle executor | |
| run: ./bundler-test-executors/runall.sh local ./bundler-test-executors/bundlers/rundler/rundler.yml | |
| - name: Parse spec results | |
| run: ./rundler/.github/scripts/compliance_parser.sh ./bundler-test-executors/build/out/rundler.xml | |
| - name: Archive rundler log file | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: rundler-log-file | |
| path: bundler-test-executors/build/out/rundler.log |