Skip to content

Commit

Permalink
Merge pull request #6 from alexfikl/fix-workflow
Browse files Browse the repository at this point in the history
Fix CI workflow
  • Loading branch information
Wrzlprmft authored Nov 22, 2024
2 parents e70716f + 966a6f0 commit 0aacade
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ include = [
]

[tool.setuptools_scm]
version_file = "chspy/version.py"
write_to = "chspy/version.py"

0 comments on commit 0aacade

Please sign in to comment.