Add add-callback hook to Db. Use callback to invoke MyScores add oper… #154
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
on: push | |
jobs: | |
container: | |
runs-on: ubuntu-latest | |
container: ubuntu:latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v2 | |
- name: Update package manager | |
run: apt-get update | |
- name: Install dependencies | |
run: apt-get -y install clang cmake git | |
- name: CMake | |
run: cmake -S. -B build | |
- name: CMake build | |
run: cmake --build build | |
- name: Run tests | |
run: ./build/test/engine_tests && ./build/test/net_tests |