Skip to content

Commit

Permalink
revert the workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Sep 2, 2024
1 parent 068fe9a commit bf6c142
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 22 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/macos-tests-3.12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: macos python=3.12

# 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.12"
- name: Set-up miniconda for macos and ubuntu
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.12
miniconda-version: "latest"
- name: Create conda env
run: conda create -n spare python=3.12
- name: Install pip
run: conda run -n spare conda install pip
- name: Install spare scores
run: |
pip install setuptools twine wheel
python -m pip install .
- name: Download dependencies
run: pip install setuptools && pip install .
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
File renamed without changes.
22 changes: 0 additions & 22 deletions .github/workflows/macos_test_cases_p3-12.yml

This file was deleted.

File renamed without changes.
File renamed without changes.

0 comments on commit bf6c142

Please sign in to comment.