Skip to content

update readme formatting #76

update readme formatting

update readme formatting #76

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.12]
package-dir:
- api
- pp
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-verion }}
- name: Install dependencies
run: |
cd ${{ matrix.package-dir }}
python -m pip install --upgrade pip
pip install -r requirements.txt && pip install -r requirements-test.txt
- name: Test with pytest
run: |
cd ${{ matrix.package-dir }}
python -m pytest