Updated the version number to 2.2.5 #30
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: 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 |