CI: use the preinstalled mingw-w64 and ninja on windows-latest (#606) #640
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: linux | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| branches: [ master ] # CI on PRs targeting master | |
| pull_request: | |
| branches: [ master ] # CI on PRs targeting master | |
| jobs: | |
| linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: seanmiddleditch/gha-setup-ninja@master | |
| - name: make test | |
| run: make -f makefile.dev test |