Use the expected return type. #260
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: Test OSX | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8.10] | |
cxx: [clang++] | |
std: [c++11, c++14] # TODO: c++17 is failing ! | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: setup prerequisites | |
run: | | |
brew install boost | |
python -m pip install --upgrade pip | |
python -m pip install setuptools faber | |
- name: build | |
run: | | |
python --version | |
${{ matrix.cxx }} --version | |
brew info boost | |
faber -v | |
sed -e "s/\$PYTHON/python/g" .ci/faber > ~/.faber | |
faber \ | |
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ | |
--builddir=build \ | |
cxx.name=${{ matrix.cxx }} \ | |
cxxflags=-std=${{ matrix.std }} \ | |
-j`sysctl -n hw.ncpu` | |
- name: test | |
run: | | |
faber \ | |
--with-boost-include=/opt/homebrew/Cellar/boost/1.86.0/include \ | |
--builddir=build\ | |
cxx.name=${{ matrix.cxx }} \ | |
cxxflags=-std=${{ matrix.std }} \ | |
-j`sysctl -n hw.ncpu` \ | |
test.report |