There was an error while loading. Please reload this page.
1 parent 8c62f14 commit a07c1acCopy full SHA for a07c1ac
1 file changed
.github/workflows/build.yml
@@ -72,3 +72,24 @@ jobs:
72
./setup.py rpm
73
74
- run: mock --root epel-8-x86_64 *.src.rpm
75
+
76
+ # Build and install on Windows
77
+ windows:
78
+ runs-on: windows-latest
79
+ strategy:
80
+ matrix:
81
+ python-version: [3.8]
82
83
+ steps:
84
+ - uses: actions/checkout@v2
85
86
+ - name: Set up Python ${{ matrix.python-version }}
87
+ uses: actions/setup-python@v2
88
+ with:
89
+ python-version: ${{ matrix.python-version }}
90
91
+ - name: Build tarball & install
92
+ run: |
93
+ python setup.py sdist
94
95
+ pip install --find-links dist python-bugzilla
0 commit comments