We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cfd23dc + a99241a commit 3a47f19Copy full SHA for 3a47f19
.github/workflows/python-package.yml
@@ -7,6 +7,34 @@ env:
7
8
9
jobs:
10
+ build_nrtest_plugin:
11
+ name: Build nrtest-swmm plugin
12
+ runs-on: ubuntu-18.04
13
+ defaults:
14
+ run:
15
+ working-directory: ./nrtest-swmm
16
+
17
+ steps:
18
+ - name: Checkout repo
19
+ uses: actions/checkout@v2
20
+ with:
21
+ submodules: true
22
23
+ - name: Install Python
24
+ uses: actions/setup-python@v2
25
26
+ python-version: 3.7
27
28
+ - name: Build wheel
29
+ run: |
30
+ pip install wheel
31
+ python setup.py bdist_wheel
32
+ - uses: actions/upload-artifact@v2
33
34
+ path: nrtest-swmm/dist/*.whl
35
36
37
38
build_linux_wheels:
39
name: Build wheels on linux
40
runs-on: ubuntu-18.04
0 commit comments