Option to spawn a process with CREATE_NO_WINDOW on windows #572
Workflow file for this run
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: macOS | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macOS-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: xmake-io/github-action-setup-xmake@v1 | |
with: | |
xmake-version: branch@dev | |
- name: Tests | |
run: | | |
xmake | |
xmake run demo | |
xmake f -m debug | |
xmake -r | |
xmake run demo | |
xmake f --micro=y | |
xmake -r | |
xmake run demo | |
xmake f --small=y -m debug | |
xmake -r | |
xmake run demo |