Skip to content

Fix markdown

Fix markdown #23

Workflow file for this run

name: Linting
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Check format with black
run: |
black --version
black --diff pyDOE3
black --check pyDOE3