Use vlq instead of u4 to for event action count #151
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: "check-build" | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install Catch2 for testing | |
run : | | |
git clone https://github.com/catchorg/Catch2.git | |
cd Catch2 | |
cmake -Bbuild -H. -DBUILD_TESTING=OFF | |
sudo cmake --build build/ --target install | |
- name: Configure CMake | |
run: cmake -Bbuild | |
- name: Build | |
run: cmake --build build | |
- name: Test with Catch2 | |
run: cd build/bin && ./tests | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Configure CMake | |
run: cmake -G "Visual Studio 17 2022" -B build | |
- name: Build | |
run: cmake --build build |