deps: remove libtiledb-sql-py #13
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: Check | |
on: | |
push: | |
branches: [ devel ] | |
pull_request: | |
branches: [ devel ] | |
permissions: | |
contents: write | |
jobs: | |
Test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
include: | |
- os: ubuntu-latest | |
python-version: "3.12" | |
# - os: windows-latest | |
# python-version: "3.12" | |
- os: macos-latest | |
python-version: "3.12" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package and dependencies on ${{ matrix.os }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[dev] | |
- name: Run tests on ${{ matrix.os }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[dev] | |
# stop the build if there are Python syntax errors or undefined names | |
ruff check . --select=E9,F63,F7,F82 | |
pytest | |
- name: Buid Sphinx doc on ${{ matrix.os }} | |
if: runner.os == 'Linux' && ${{ github.event_name == 'push' && github.ref == 'refs/heads/devel' }} && ${{ matrix.python-version == '3.12'}} | |
run: | | |
sudo apt-get update && sudo apt-get -y install make | |
pip install -e .[dev,docs] | |
make -C docs html | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
if: runner.os == 'Linux' && ${{ github.event_name == 'push' && github.ref == 'refs/heads/devel' }} && ${{ matrix.python-version == '3.12'}} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/build/html | |
force_orphan: true |