Skip to content

Commit

Permalink
Support exporting Idris types to Java
Browse files Browse the repository at this point in the history
  • Loading branch information
mmhelloworld committed Jul 14, 2024
1 parent a5b3bf5 commit 1072df8
Show file tree
Hide file tree
Showing 19 changed files with 1,137 additions and 380 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-sphinx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Sphinx

on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- main
jobs:

sphinx-doc-check:
name: Sphinx
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4
- name: Build docs
run: |
sudo apt-get install -y python3-sphinx
pip3 install -r docs/requirements.txt
cd docs
make html
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'Idris JVM'
copyright = '2023, Marimuthu Madasamy'
copyright = '2024, Marimuthu Madasamy'
author = 'Marimuthu Madasamy'

# -- General configuration ---------------------------------------------------
Expand All @@ -22,4 +22,5 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "sphinx_rtd_theme"
html_theme_options = {'navigation_depth': 5 }
html_static_path = ['_static']
Loading

0 comments on commit 1072df8

Please sign in to comment.