Add WorkFactory which allows to delay creation of the next Work #834
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: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
brew install sdl2 freetype libvorbis webp pkg-config ninja | |
- name: Build with CMake | |
run: | | |
cmake -H. -Bbuild-cmake -GNinja | |
ninja -Cbuild-cmake | |
# - name: Android | |
# run: | | |
# make -Candroid |