18 lines
227 B
YAML
18 lines
227 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
|
|
run: mingw32-make
|