Bump Copyright year to 2026 #68
Workflow file for this run
This file contains hidden or 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: RunUnitTest | |
| on: pull_request | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libmpfr-dev | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Build tests | |
| working-directory: test | |
| run: | | |
| make -k -j`nproc` build | |
| - name: Run tests | |
| working-directory: test | |
| run: | | |
| make -k run |