doc: typo #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
name: Tests | |
jobs: | |
Python-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- name: Check out pylifemap repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Install node dependencies | |
run: npm install --workspaces --include-workspace-root | |
- name: Install hatch | |
run: pipx install hatch | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Run pytest | |
run: hatch run test | |
# JS-tests: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out repository | |
# uses: actions/checkout@v3 | |
# - name: Setup node | |
# uses: actions/setup-node@v3 | |
# with: | |
# cache: "npm" | |
# - name: Install node dependencies | |
# run: npm ci --workspaces | |
# - name: Run tests | |
# run: npm run test --workspaces |