feat: couple of functions, BGSSaveLoadManager
defs
#243
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: Main CI [XMake] | |
on: | |
pull_request: | |
branches: main | |
paths: | |
- "src/**" | |
- "include/**" | |
- ".github/workflows/main_ci_xmake.yml" | |
- "xmake.lua" | |
- "xmake-extra.lua" | |
workflow_dispatch: | |
jobs: | |
build-xmake: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
mode: | |
- debug | |
- release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup XMake | |
uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: "latest" | |
- name: Configure | |
run: xmake config -y --mode=${{ matrix.mode }} --vs_toolset=14.41 | |
- name: Build | |
run: xmake build -y -vD |