Skip to content

Add parsed files and read them... #2492

Add parsed files and read them...

Add parsed files and read them... #2492

Workflow file for this run

---
name: Mathics3 Packages (ubuntu)
on:
push:
branches: [master]
pull_request:
branches: '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.14']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install OS dependencies
run: |
sudo apt-get update -qq && sudo apt-get install -qq liblapack-dev llvm-dev tesseract-ocr remake
- name: Install dependent Mathics3 programs
run: |
python -m pip install --upgrade pip
# We can comment out after next Mathics3-Scanner release
# git clone --depth 1 https://github.com/Mathics3/Mathics3-scanner.git
# cd Mathics3-scanner/
# pip install -e .
# bash -x admin-tools/make-JSON-tables.sh
# cd ..
- name: Run Mathics3 Combinatorica tests
run: |
git submodule init
git submodule update
python -m pip install setuptools wheel
python -m pip install --no-build-isolation -e .[dev]
remake -x develop
cd mathics/Packages/Combinatorica-repo
# If Combinatorica repo changes, we may need the below altered
# with a branch name, (not HEAD) for testing.
git pull origin HEAD
pip install --no-build-isolation -e .[dev]
remake -x check