Skip to content

Commit

Permalink
Fix CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Nov 21, 2024
1 parent e70716f commit 8adcbad
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@ concurrency:

jobs:
test:
name: Unittest ({{ matrix.os}}/py${{ matrix.python-version }})
runs-on: {{ matrix.os }}
name: Unittest (${{ matrix.os }}/py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.6', '3.10', '3.x']
python-version: ['3.10', '3.x']
include:
- os: ubuntu-20.04
python-version: '3.6'
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand All @@ -30,5 +33,6 @@ jobs:
- name: Main Script
run: |
python -m pip install --upgrade pip setuptools setuptools-scm wheel
python -m pip install --upgrade numpy symengine sympy
python -m pip install --verbose --no-build-isolation --editable .
python -m unittest discover -b -f tests

0 comments on commit 8adcbad

Please sign in to comment.