perf: bypass ConcreteInstr validation in from_code via _from_opcode (… #318
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: Frameworks tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/cis.yml | |
| - "src/**" | |
| - "tests/frameworks/*" | |
| - pyproject.toml | |
| - tox.ini | |
| jobs: | |
| boto3: | |
| name: boto3 with Python ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }}-dev | |
| - name: Setup | |
| run: bash scripts/frameworks/boto3/setup.sh /tmp/boto3 ${{ matrix.python-version }} | |
| - name: Run | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/tests/frameworks/ | |
| run: bash scripts/frameworks/boto3/run.sh /tmp/boto3 ${{ matrix.python-version }} |