Skip to content

Updated the version number to 2.2.5 #30

Updated the version number to 2.2.5

Updated the version number to 2.2.5 #30

Workflow file for this run

name: test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
python setup.py install
- name: Test Ideal Gases
working-directory: ./src/test
run: pytest test_ig.py
- name: Test Multiphase
working-directory: ./src/test
run: pytest test_mp1.py
- name: Test Unit Conversion
working-directory: ./src/test
run: pytest test_units.py