We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2869686 commit 8d17bf3Copy full SHA for 8d17bf3
.github/workflows/master.yml
@@ -0,0 +1,30 @@
1
+name: Mathics (ubuntu)
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ python-version: [3.6, 3.7, 3.8]
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
+ sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev maria libmysqlclient-dev
24
+ python -m pip install --upgrade pip
25
+ - name: Install pymathics
26
27
+ pip install -e .
28
+ - name: Test Mathics
29
30
+ make check
0 commit comments