Trim obsolete Python SDK release and gate tooling #250
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-test: | |
| name: "IntentProof CI: Build and Test" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Checkout spec repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: IntentProof/intentproof-spec | |
| ref: main | |
| path: intentproof-spec | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: pip install -e ".[dev]" | |
| - name: Run tests | |
| env: | |
| INTENTPROOF_SPEC_DIR: intentproof-spec | |
| run: python3 -m pytest |