Bump ruff from 0.16.2 to 0.16.3 #112
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: End-to-End Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| env: | |
| ENDORSER_ENV: "testing" | |
| ACAPY_ENDPOINT: "http://host.docker.internal:8050" | |
| LEDGER_URL: "https://test.bcovrin.vonx.io" | |
| TAILS_SERVER_URL: "https://tails-test.vonx.io" | |
| WEBVH_SERVER_URL: "https://sandbox.bcvh.vonx.io" | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Build Docker images | |
| working-directory: ./docker | |
| run: | | |
| ./manage build | |
| - name: Start services | |
| working-directory: ./docker | |
| run: | | |
| ./manage start-bdd --logs & | |
| # Wait for services to be ready (adjust sleep time as needed) | |
| sleep 30 | |
| - name: Run BDD tests | |
| working-directory: ./docker | |
| run: | | |
| ./manage run-bdd-docker |