Skip to content

Commit 1150eec

Browse files
committedFeb 17, 2022
A library for explainable AI
1 parent d231f6d commit 1150eec

File tree

257 files changed

+110919
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

257 files changed

+110919
-0
lines changed
 

‎.copyright.tmpl

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Copyright (c) ${years} ${owner}
2+
All rights reserved.
3+
SPDX-License-Identifier: BSD-3-Clause
4+
For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause

‎.github/workflows/docs.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: docs
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
release:
9+
types: [ published ]
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
with:
19+
fetch-depth: 0
20+
- name: Set up Python
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: '3.9'
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip setuptools wheel
27+
sudo apt-get install openjdk-11-jdk
28+
sudo apt-get install pandoc
29+
- name: Build Sphinx docs
30+
run: |
31+
docs/build_docs.sh
32+
- name: Deploy to gh-pages
33+
uses: peaceiris/actions-gh-pages@v3
34+
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'release' }}
35+
with:
36+
github_token: ${{ secrets.GITHUB_TOKEN }}
37+
publish_dir: docs/_build/html

0 commit comments

Comments
 (0)
Please sign in to comment.