Skip to content

* Updated the parchmint dependency to 0.3.5 to ensure that valve mapp… #125

* Updated the parchmint dependency to 0.3.5 to ensure that valve mapp…

* Updated the parchmint dependency to 0.3.5 to ensure that valve mapp… #125

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ricardochaves/[email protected]
with:
python-root-list: "pymint tests"
use-pylint: true
use-black: true
use-mypy: true
use-isort: true
test:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
poetry-version: [1.3.1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install graphviz deps
run: sudo apt-get install -y graphviz-dev
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest
docs:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ammaraskar/sphinx-action@master
with:
docs-folder: "docs/"
- uses: actions/upload-artifact@v1
with:
name: DocumentationHTML
path: docs/_build/html/