From ec8cb9ecead2d8624bee74c159658064cac96264 Mon Sep 17 00:00:00 2001 From: Joaquin Matres <4514346+joamatab@users.noreply.github.com> Date: Wed, 23 Nov 2022 17:20:05 -0800 Subject: [PATCH] fix test docs --- .github/workflows/test_code.yml | 19 ++++++------------- Makefile | 1 + 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test_code.yml b/.github/workflows/test_code.yml index 164942120..f456132c3 100644 --- a/.github/workflows/test_code.yml +++ b/.github/workflows/test_code.yml @@ -35,25 +35,18 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: conda-incubator/setup-miniconda@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 with: - python-version: 3.9 - mamba-version: "*" - channels: conda-forge,defaults - channel-priority: true - activate-environment: anaconda-client-env - - name: Add conda to system path - run: | - echo $CONDA/bin >> $GITHUB_PATH + python-version: ${{ matrix.python-version }} + cache: "pip" - name: Install dependencies run: | make install - cd Doc - python doxypy.py + sudo apt install doxygen - name: Test documentation run: | - cd docs - make html + doxygen SignalIntegrityLinux release_pypi: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') runs-on: ubuntu-latest diff --git a/Makefile b/Makefile index 0c8279923..25e634cfe 100644 --- a/Makefile +++ b/Makefile @@ -32,3 +32,4 @@ update: update-pre: pre-commit autoupdate --bleeding-edge +