Bump siliconcompiler from 6f85985
to 4f9d7ba
#27
Workflow file for this run
This file contains 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 Tests' | |
on: | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
python_test_job: | |
timeout-minutes: 15 | |
runs-on: ${{ matrix.version.os }} | |
name: 'Pure Python tests' | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- {python: "3.8", os: "ubuntu-latest"} | |
- {python: "3.9", os: "ubuntu-latest"} | |
- {python: "3.10", os: "ubuntu-latest"} | |
- {python: "3.11", os: "ubuntu-latest"} | |
- {python: "3.12", os: "ubuntu-latest"} | |
- {python: "3.13", os: "ubuntu-latest"} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install graphviz | |
- name: Set up Python ${{ matrix.version.python }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.version.python }} | |
allow-prereleases: true | |
- name: Run Python tests | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install .[test] | |
pytest -m "not wheel" |