Merge pull request #7 from daavid00/developing #17
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: Run pycopm | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run-pycopm-local: | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8'] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Flow Simulator | |
run: | | |
sudo apt-get update | |
sudo apt-get install software-properties-common | |
sudo apt-add-repository ppa:opm/ppa | |
sudo apt-get update | |
sudo apt-get install mpi-default-bin | |
sudo apt-get install libopm-simulators-bin | |
- name: Install dependecies | |
run: | | |
pip install --upgrade pip setuptools wheel | |
pip install -r dev-requirements.txt | |
- name: Install pycopm | |
run: | | |
pip install . | |
- name: Check code style and linting | |
run: | | |
black --check src/ tests/ | |
pylint src/ tests/ | |
mypy --ignore-missing-imports src/ tests/ | |
- name: Run the tests | |
run: | | |
pytest --cov=pycopm --cov-report term-missing tests/ | |
- name: Build documentation | |
run: | | |
pushd docs | |
make html |