Fixing python 3.12 issues for MacOS #14
Workflow file for this run
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: macos build python=3.8 | |
# workflow dispatch has been added for testing purposes | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ["macos-13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install spare scores | |
run: | | |
python -m pip cache purge | |
pip install -r requirements.txt | |
pip install setuptools twine wheel | |
python setup.py bdist_wheel | |
cd dist | |
WHEEL_FILE=$(ls spare_scores*) | |
pip install "$WHEEL_FILE" | |
- name: Generate Coverage Report | |
run: | | |
pip install pytest pytest-cov | |
cd tests/unit && pytest --cov=../../ --cov-report=xml | |
- name: Upload Coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: CBICA/spare_score |