Skip to content

Solving comments about the documentation #104

Solving comments about the documentation

Solving comments about the documentation #104

Workflow file for this run

name: "Pull request"
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} πŸ”§
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies πŸ”§
run: |
python -m pip install --upgrade pip
pip install -e .['test']
- name: Test with pytest πŸ”§
run: |
pytest -v
doc:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Set up Python πŸ”§
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies πŸ”§
run: |
python -m pip install --upgrade pip
pip install -e .['doc']
- name: Build the Doc πŸ”§
run: |
cd docs
make clean
make html
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Black codestyle πŸ”§
uses: psf/black@stable