Skip to content

Commit

Permalink
install master version of interpolate
Browse files Browse the repository at this point in the history
  • Loading branch information
omodei committed Feb 2, 2024
1 parent b49c0d0 commit 5462dc0
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11"]
os: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -50,6 +50,7 @@ jobs:
run: |
python -m pip install --upgrade pip wheel
pip install --upgrade flake8 coverage pytest-cov cython
pip install git+https://github.com/EconForge/interpolation.py.git
pip install -e .
- name: Lint with flake8
run: |
Expand All @@ -65,9 +66,16 @@ jobs:
NUMEXPR_NUM_THREADS: 1
MPLBACKEND: "Agg"

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
if: always()
- name: Publish Unit Test Results Ubuntu
uses: EnricoMi/publish-unit-test-result-action@v2
if: matrix.os=="ubuntu-latest"
with:
files: junit/test-*.xml
comment_mode: off

- name: Publish Unit Test Results MacOS
uses: EnricoMi/publish-unit-test-result-action/composite@v2
if: matrix.os=="macos-latest"
with:
files: junit/test-*.xml
comment_mode: off
Expand Down

0 comments on commit 5462dc0

Please sign in to comment.