This repository was archived by the owner on Jul 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (80 loc) · 2.62 KB
/
Copy pathbuild.yml
File metadata and controls
84 lines (80 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Python package
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
build:
name: Build for (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest'] #, 'macos-latest'] #, 'windows-latest']
python-version: ['3.9'] # '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Python info
shell: bash -e {0}
run: |
which python
python --version
- name: Upgrade pip and install dependencies
run: |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf https://github
python -m pip install --upgrade pip setuptools
python -m pip install .[dev,publishing]
pip install coveragepy-lcov 'coverage<7'
- name: Install EPANET quantum and set environment variables
run: |
git clone https://github.com/QuantumApplicationLab/EPANET
echo "EPANET_TMP=$RUNNER_TEMP" >> $GITHUB_ENV
echo "EPANET_QUANTUM=${{ github.workspace }}/EPANET" >> $GITHUB_ENV
echo "$GITHUB_ENV"
- name: Verify that we can build the package
run: python -m build
- name: run code coverage
run: |
coverage3 run --source wntr_quantum --parallel-mode -m pytest -v
coverage3 combine
coverage3 report
- name: Convert to lcov
run: coveragepy-lcov --output_file_path coveralls.info
- name: Upload report to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: coveralls.info
format: lcov
lint:
name: Linting build
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Python info
shell: bash -e {0}
run: |
which python
python --version
- name: Upgrade pip and install dependencies
run: |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf https://github
python -m pip install --upgrade pip setuptools
python -m pip install .[dev,publishing]
- name: Check style against standards using ruff
run: ruff check wntr_quantum/