Skip to content

PR: heat of adsorption for single and multiple components #62

PR: heat of adsorption for single and multiple components

PR: heat of adsorption for single and multiple components #62

Workflow file for this run

name: Python application test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Specify the Python version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: |
cd Examples/; pytest -s # Assuming your tests are in the 'tests' directory