raylib-cpp-template/.github/workflows/windows.yml
2020-11-27 14:05:56 +11:00

34 lines
681 B
YAML

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
working-directory: D:/a/raylib-cpp-starter
- name: make compile
run: mingw32-make compile
- name: make clean
run: mingw32-make clean
shell: cmd
working-directory: D:/a/raylib-cpp-starter
- name: make compile CXX=g++
run: mingw32-make compile CXX=g++
- name: make clean
run: mingw32-make clean
shell: cmd
working-directory: D:/a/raylib-cpp-starter