Update INSTALL text regarding recent SIMD changes #59
Workflow file for this run
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
--- | |
name: Run documentation build tests | |
on: | |
push: | |
paths-ignore: | |
- 'src/**' | |
jobs: | |
build-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install documentation prerequisites | |
run: sudo apt-get install latexmk texlive-formats-extra | |
- name: Configure project | |
run: ./configure | |
- name: Build project | |
run: make pdf |