Remove rand_r from cpfloat_binary32|64.h
#100
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: run-c-tests | |
| on: | |
| push: | |
| jobs: | |
| build-and-run-c-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Install check library | |
| run: | | |
| sudo apt update | |
| sudo apt install -y check | |
| - name: Build and run C tests | |
| run: make ctest | |
| - name: Build and run library tests | |
| run: make libtest |