Skip to content

feat: update automated Offsets #7

feat: update automated Offsets

feat: update automated Offsets #7

Workflow file for this run

name: Main CI
on:
push:
branches: [ main ]
paths:
- ".github/workflows/main_ci.yml"
- "include/**"
- "src/**"
- "xmake.lua"
- "xmake-extra.lua"
pull_request:
branches: [ main ]
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 }}
- name: Build
run: xmake build -y -vD