fix (metadata): Fix broken CLI arg - trails-folder #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: run pre-commit | |
run: | | |
pip install pre-commit | |
pre-commit run --all-files | |
Docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install doc dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install pandoc | |
sudo apt-get update -y | |
pip install -e .[dev] | |
- name: Build docs | |
run: | | |
cd docs | |
python -m sphinx -TEWb html source build | |
Typing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Set up Python" | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: install dependencies | |
run: | | |
pip install -e .[dev] | |
- name: run mypy | |
run: | | |
mypy -v mitosis | |
Tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 4 | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install .[dev] | |
- name: Test with pytest | |
run: | | |
coverage run --source=mitosis -m pytest mitosis/tests -m "clean or not clean" && coverage xml | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- |