Achieve compatibility with Python 3.9-3.13 and add tests to CI #1
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: Python test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| python-test: | |
| runs-on: ubuntu-latest | |
| name: Test Python (${{ matrix.python-version}}) | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| steps: | |
| - uses: ./.github/actions/setup-ubuntu | |
| with: | |
| python-version: ${{ matrix.python-version}} | |
| - name: Run tests | |
| run: | | |
| python3 test.py -W error --tests simple0_m55,aarch64_simple0_a55,armv7m_simple0_m7 |