Create msys2.yml

This commit is contained in:
ksherlock 2020-11-17 15:45:51 -05:00 committed by GitHub
parent ab5961c1a9
commit d66de57273
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

22
.github/workflows/msys2.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: MSYS2 build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
path-type: strict
# Runs a single command using the runners shell
- name: Make MINGW32
run: |
set MSYSTEM=MINGW32
msys2 -c 'make'