Skip to content

Commit 01f8036

Browse files
authored
GitHub Action to pip install symengine on current Python and PyPy
* symengine#421
1 parent 810ef47 commit 01f8036

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pip_install.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: pip_install
2+
on: [pull_request, push]
3+
jobs:
4+
pip_install:
5+
strategy:
6+
fail-fast: false
7+
matrix:
8+
os: [ubuntu-latest] # [ubuntu-latest, macos-latest, windows-latest]
9+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9', 'pypy3.10']
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/setup-python@v4
13+
with:
14+
python-version: ${{ matrix.python-version }}
15+
- run: pip install --upgrade pip setuptools wheel
16+
- run: pip install symengine

0 commit comments

Comments
 (0)