Skip to content

doc: typo

doc: typo #33

Workflow file for this run

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