Add files via upload #234
This file contains hidden or 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: WINDOWS BUILD | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| #TEST UNDER WINDOWS | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install dependencies (Windows) | |
| run: make install | |
| shell: bash # optional: if you want to run bash commands on Windows runners | |
| - name: Run tests (Windows) | |
| run: make test | |
| shell: bash # or cmd / powershell depending on your makefile and environment |