remove the global selChange++ and increase it before firing ID_UPDATE #628
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: continuous-integration | |
on: [push, pull_request] | |
jobs: | |
linux-os: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get latest CMake and ninja | |
uses: lukka/get-cmake@latest | |
- name: Update APT | |
run: sudo apt update | |
- name: Install Dependencies | |
run: sudo apt install --assume-yes libfox-1.6-dev libphysfs-dev libcurl4-openssl-dev | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build and Test | |
uses: threeal/cmake-action@v1.1.0 | |
with: | |
args: "-DCMAKE_BUILD_TYPE=Debug" | |
run-test: false |