This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
refactor: use composition for Sprite children #28
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: Windows | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make setup | |
run: mingw32-make setup | |
shell: cmd | |
- name: make bin/app | |
run: mingw32-make bin/app | |
shell: cmd | |
- name: 'export binary' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app.exe | |
path: bin/app.exe | |
- name: make clean | |
run: mingw32-make clean | |
shell: cmd | |
- name: make bin/app CXX=g++ | |
run: mingw32-make bin/app CXX=g++ | |
shell: cmd | |
- name: make clean | |
run: mingw32-make clean | |
shell: cmd |