Fix undefined behavior in Suffix Array (#264) #199
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 |