Skip to content

update to be compatibile with new geostructures version #29

update to be compatibile with new geostructures version

update to be compatibile with new geostructures version #29

name: Pull Request Quality Check
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Lint with pylint
run: |
pylint --fail-under=9.0 geochron
- name: Pytest
run: |
coverage run --source geochron -m pytest tests && coverage report -m --fail-under 99
- name: MyPy
run: |
mypy geochron --ignore-missing-imports