Skip to content

Commit eb1fae6

Browse files
committed
Add Mathics3 full test
1 parent 427b86c commit eb1fae6

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

.github/workflows/mathics.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Mathics_Script (ubuntu)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: [3.9]
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up Python ${{ matrix.python-version }}
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: ${{ matrix.python-version }}
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install -e .
25+
- name: Install Mathics_Scanner
26+
run: |
27+
make
28+
- name: Test Mathics
29+
run: |
30+
# Until next Mathic3 release is out...
31+
python -m pip install -e git://github.com/mathics/Mathics#egg=Mathics3[full]
32+
# pip install Mathics3[extra]
33+
make check-mathics

0 commit comments

Comments
 (0)