Skip to content

Add command to forcibly write all in-memory data to the DB #5

Add command to forcibly write all in-memory data to the DB

Add command to forcibly write all in-memory data to the DB #5

Workflow file for this run

name: Test Build
on:
- pull_request
- push
jobs:
build:
runs-on: ubuntu-20.04
env:
CXX: ${{ matrix.compiler }}
CXXFLAGS: -std=${{ matrix.standard }}
steps:
- uses: actions/checkout@v2
- name: Build Modules
run: |
./test_build.sh
strategy:
fail-fast: false
matrix:
compiler:
- clang++
- g++
standard:
- c++98
- c++17