RIVET_ENABLE_ADAPTORの変更追随 #72
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: Test by MSVC | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 19 * * 3" | |
jobs: | |
MSVC2019: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: pip install meson ninja | |
- uses: ilammy/msvc-dev-cmd@v1.12.0 | |
- run: meson setup build | |
- run: meson test -C build -v | |
MSVC2022: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: pip install meson ninja | |
- uses: ilammy/msvc-dev-cmd@v1.12.0 | |
- run: meson setup build | |
- run: meson test -C build -v |