Corrected method description #339
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: SModelS Validation | |
on: | |
push: | |
branches: [ main, develop, release/* ] | |
pull_request: | |
branches: [ main, develop ] | |
# Enables manual action execution. | |
workflow_dispatch: | |
jobs: | |
test: | |
name: OS ${{ matrix.os }}, Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 420 | |
strategy: | |
matrix: | |
python-version: [ "3.7", "3.8", "3.9", "3.10" ] | |
os: [ubuntu-20.04, ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f smodels/share/requirements.txt ]; then | |
python -m pip install -r smodels/share/requirements.txt; | |
# silly workaround for python3.7, we need to use old numpy versions | |
# echo "numpy>=1.18.0,!=1.21.*" > modded.txt; | |
# cat smodels/share/requirements.txt | grep -v numpy >> modded.txt; | |
# python -m pip install -r modded.txt; | |
fi | |
if [ -f test/test_requirements.txt ]; then python -m pip install -r test/test_requirements.txt; fi | |
python -m pip install -e . | |
- name: Test with unittest | |
run: | | |
cd unittests | |
make reduced |