Optionally close LaTeX input cells immediately on running them (defau… #434
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a build which gets triggered on every commit push, to | |
# ensure that we get some warnings when we push code that does | |
# not build on macOS. | |
name: macOS | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: Exit if not on devel branch | |
# if: github.ref != 'refs/heads/devel' | |
# run: exit 1 | |
# - name: remove python 3.12 | |
# run: brew uninstall [email protected] | |
- name: get dependencies | |
run: brew install cmake boost pcre gmp [email protected] pkgconfig gtkmm3 adwaita-icon-theme && python3 -m pip install --break-system-packages --user sympy gmpy2 numpy | |
- name: configure | |
run: mkdir build && cd build && cmake -DENABLE_MATHEMATICA=OFF -DPython_EXECUTABLE=python3.12 .. | |
- name: make | |
run: cd build && make | |
- name: make test | |
run: cd build && make test ARGS="-V" |