64 lines
No EOL
1.7 KiB
YAML
64 lines
No EOL
1.7 KiB
YAML
name: Tests for PyPI package
|
|
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
build-linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
steps:
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install --verbose llama-cpp-python[all]
|
|
- name: Test with pytest
|
|
run: |
|
|
python3 -c "import llama_cpp"
|
|
|
|
build-windows:
|
|
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
steps:
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install --verbose llama-cpp-python[all]
|
|
- name: Test with pytest
|
|
run: |
|
|
python3 -c "import llama_cpp"
|
|
|
|
build-macos:
|
|
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
|
|
|
steps:
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python3 -m pip install --upgrade pip
|
|
python3 -m pip install --verbose llama-cpp-python[all]
|
|
- name: Test with pytest
|
|
run: |
|
|
python3 -c "import llama_cpp" |