Skip to content

Commit

Permalink
install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwutk committed Jul 28, 2024
1 parent 614644c commit 8e76ab9
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,32 @@ jobs:
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- uses: actions/setup-python@v5
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
python-version: '3.10'
environment-name: spatialyze
create-args: >-
-c conda-forge
python=3.10
poetry=1.5.1
init-shell: none
cache-downloads: false
- name: Check Python Versions
shell: micromamba-shell {0}
run: |
python --version
python3 --version
which python
which python3
which pip
which pip3
which poetry
- name: Install Dependencies
shell: micromamba-shell {0}
run: poetry install --no-interaction --without dev --with test
- name: Check Installed Packages
shell: micromamba-shell {0}
run: pip list
- name: API Doc
run: |
pip install pdoc
Expand Down

0 comments on commit 8e76ab9

Please sign in to comment.