check meson #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: msys2 | |
on: [push, pull_request] | |
jobs: | |
msys2-build: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
path-type: inherit | |
install: | | |
mingw-w64-x86_64-gcc-fortran | |
mingw-w64-x86_64-fpm | |
mingw-w64-x86_64-meson | |
mingw-w64-x86_64-ninja | |
- name: fpm test | |
run: | | |
fpm test | |
fpm test -- -? | |
fpm test -- -v | |
- name: meson test | |
run: | | |
meson setup _build | |
meson test -C _build |