Skip to content

Added a more efficient rdflib graph for SPARQL queries #24

Added a more efficient rdflib graph for SPARQL queries

Added a more efficient rdflib graph for SPARQL queries #24

Workflow file for this run

name: Build and Deploy Jupyter Book
on:
push:
branches:
- main # or your default branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -U jupyter-book
- name: Build Jupyter Book
run: |
jupyter-book build .
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html