Skip to content

Rename the std stream methods to avoid conflicts #2

Rename the std stream methods to avoid conflicts

Rename the std stream methods to avoid conflicts #2

Workflow file for this run

name: unit-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++, clang]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y libboost-all-dev libboost-test-dev
- name: Build
run: |
./autogen.sh
./configure CXX=${{ matrix.compiler }}
make
- name: Test
run: make test