Skip to content

Gap filler model #52

Gap filler model

Gap filler model #52

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- 3.9
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
# Step to install the project and its dependencies
- name: Install Project
run: |
pip install .
# Step to run unit tests with pytest
- name: Run Unit Tests
run: |
pytest tests/unit_tests/biomeneco/