Add command to forcibly write all in-memory data to the DB #5
Workflow file for this run
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 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 |