diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d0eb296..ef772b3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,11 +24,11 @@ jobs: run: | python -m pip install --upgrade pip pip install PySide6 - pip install -v ".[docs]" + pip install -ve ".[docs]" - name: Build docs run: | cd ./docs - python -c "import mne_pipeline_hd; print(dir(mne_pipeline_hd.gui))" + python -c "import mne_pipeline_hd;print(dir(mne_pipeline_hd.gui))" make html - name: Upload artifacts uses: actions/upload-artifact@v4 diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 5fa1d60..01aab1f 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -1,9 +1,9 @@ name: CIs on: - pull_request: - push: - branches: - - main +# pull_request: +# push: +# branches: +# - main jobs: pytest: