Skip to content

Update ontology and docs for doing it #254

Update ontology and docs for doing it

Update ontology and docs for doing it #254

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v1
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install .[test]
- name: Lint with flake8
run: |
python -m flake8
- name: Test sorting wioth isort
run: |
python -m isort --verbose --check-only --diff chaste_codegen tests setup.py
- name: Test with pytest
run: |
python -m pytest --cov --cov-config=.coveragerc
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos