Add references to IEEE Std 754-2019 and OFP8 specification #56
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-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 |