feat: implement contract event export CLI, chaos testing suite, and automated changelogs #4
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: Chaos Tests | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "chaos-tests/**" | |
| - ".github/workflows/chaos-tests.yml" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "chaos-tests/**" | |
| - ".github/workflows/chaos-tests.yml" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: chaos-tests | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: python -m pip install pytest PyYAML | |
| - name: Validate chaos scenarios | |
| run: python -m pytest -q |