Skip to content

fix pos

fix pos #271

Workflow file for this run

name: Googletest Unit Tests
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout flatmemory
uses: actions/checkout@v2
with:
ref: main
- name: Configure, Build, and Install Dependencies
run: |
cd dependencies
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/dependencies/installs"
cmake --build build
- name: Configure, and Build flatmemory
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -S . -B build -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/dependencies/installs"
cmake --build build
- name: Test
working-directory: build/tests/unit
run: GTEST_OUTPUT=xml:test-results/ GTEST_COLOR=1 ctest -V