Add dummy dtypes #214
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: PyO3-CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - candle-pyo3/** | |
| pull_request: | |
| paths: | |
| - candle-pyo3/** | |
| jobs: | |
| build_and_test: | |
| name: Check everything builds & tests | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] # For now, only test on Linux | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| architecture: "x64" | |
| - name: Cache Cargo Registry | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo/registry | |
| key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v2 | |
| with: | |
| version: "25.0" | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install | |
| working-directory: ./candle-pyo3 | |
| run: | | |
| python -m venv .env | |
| source .env/bin/activate | |
| pip install -U pip | |
| pip install pytest maturin black | |
| python -m maturin develop -r --features onnx | |
| - name: Check style | |
| working-directory: ./candle-pyo3 | |
| run: | | |
| source .env/bin/activate | |
| python stub.py --check | |
| black --check . | |
| - name: Run tests | |
| working-directory: ./candle-pyo3 | |
| run: | | |
| source .env/bin/activate | |
| python -m pytest -s -v tests |