Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

refactor: use composition for Sprite children #28

refactor: use composition for Sprite children

refactor: use composition for Sprite children #28

Workflow file for this run

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