Use __lg
to make treeJump
shorter
#186
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: C/C++ CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install pdflatex | |
run: sudo apt-get install texlive-latex-base texlive-latex-recommended texlive-latex-extra | |
- name: Build pdf | |
run: make kactl | |
- name: Run compiles | |
run: make test-compiles | |
- name: Run stress tests | |
run: make test |