Skip to content

Add bool operator

Add bool operator #87

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update submodules
run: git submodule sync --recursive && git submodule update --init --force --recursive --depth=1
- name: make
run: make
working-directory: ./tests
- name: test
run: ./test
working-directory: ./tests
build_clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update submodules
run: git submodule sync --recursive && git submodule update --init --force --recursive --depth=1
- name: make
run: CXX=clang++ make
working-directory: ./tests
- name: test
run: ./test
working-directory: ./tests
- name: analyze
run: make analyze
working-directory: ./tests