Skip to content

Fix a few typos in the manual #212

Fix a few typos in the manual

Fix a few typos in the manual #212

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: [3.8, 3]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
sudo apt-get -o Acquire::Retries=3 update -y
sudo apt-get -o Acquire::Retries=3 install -y libhdf5-dev
pip install -r requirements.txt
- name: Tests
run: |
black --check .
flake8 -v
python -m pytest -vv