(core) added NN id to the Calculator
's updateModelAvailability
pr…
#65
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: Mac Intel | |
on: | |
push: | |
paths: | |
- 'pysipfenn/**' | |
- '.github/workflows/coreTests_MacIntel.yaml' | |
workflow_dispatch: | |
jobs: | |
coreTest: | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
fail-fast: false | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools | |
python -m pip install wheel flask pytest | |
python -m pip install -e . | |
- name: Test with pytest | |
run: | | |
pytest --durations=0 |