36 lines
585 B
YAML
36 lines
585 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
|
|
|
|
- name: make compile
|
|
run: mingw32-make compile
|
|
shell: cmd
|
|
|
|
- name: make clean
|
|
run: mingw32-make clean
|
|
shell: cmd
|
|
|
|
- name: make compile CXX=g++
|
|
run: mingw32-make compile CXX=g++
|
|
shell: cmd
|
|
|
|
- name: make clean
|
|
run: mingw32-make clean
|
|
shell: cmd
|