Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin-Laurent committed Jan 9, 2025
1 parent 8d1e961 commit 5431301
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/doctest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@ on:
jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Git clone
uses: actions/checkout@v2
- name: Set up virtual environment
uses: conda-incubator/setup-miniconda@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
environment-file: environment.doc.yml
channels: defaults, conda-forge
miniconda-version: "latest"
- name: Install numpy
run: conda install numpy=1.25.2

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.doc.txt
- name: Test doc
run: cd doc && make doctest

0 comments on commit 5431301

Please sign in to comment.