Skip to content

Commit

Permalink
adding a docs build test
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmorgan98 committed Nov 6, 2024
1 parent 5045efa commit 0782756
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/docs_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy

on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: debug
run: |
pwd
ls
- uses: mpi4py/setup-mpi@v1
- name: Install dependencies
run: |
pip install --user . mcdc[docs]
pip list
- name: Patch Numba
run : |
bash .github/workflows/patch.sh
- name: Regression Test - Numba and MPI
run: |
cd doc && make html

0 comments on commit 0782756

Please sign in to comment.