Attempt to add Windows MinGW CI #8
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 | |
on: [push] | |
jobs: | |
posix: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, buildjet-2vcpu-ubuntu-2204-arm, macos-13, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
- run: pip3 install pyyaml | |
- run: python3 test.py | |
windows-mingw: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
cache: pip | |
- run: pip3 install pyyaml | |
- run: python3 test.py |