- version bump; added @ricardonpa to the authors list; minor polishin… #77
Workflow file for this run
This file contains hidden or 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 M1 | |
| on: | |
| push: | |
| paths: | |
| - 'pysipfenn/**' | |
| - '.github/workflows/coreTests_MacM1.yaml' | |
| workflow_dispatch: | |
| jobs: | |
| coreTest: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11"] | |
| fail-fast: false | |
| runs-on: macos-latest | |
| 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 |