Decimal Type determined at Compile Time (#26) #199
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: Build, Test, and Lint | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
container: huskysat/lost:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: CXXFLAGS=-Werror make -j$(($(nproc)+1)) | |
- name: Test Double | |
run: CXXFLAGS=-Werror make test -j$(($(nproc)+1)) | |
- name: Test Float | |
run: | | |
make clean | |
CXXFLAGS=-Werror make test LOST_FLOAT_MODE=1 -j$(($(nproc)+1)) | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
- run: pip install cpplint | |
- name: Lint | |
run: make lint | |
- name: Line Endings | |
uses: erclu/check-crlf@v1 |