Skip to content

Commit 19626bf

Browse files
authored
Merge pull request #21 from sebroy/master
connstat suna column doesn't seem to represent send+unacknowledged data
2 parents b65930f + 266dcef commit 19626bf

File tree

4 files changed

+241
-187
lines changed

4 files changed

+241
-187
lines changed

.github/workflows/flake8.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Python Lint
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Set up Python
12+
uses: actions/setup-python@v1
13+
with:
14+
python-version: 3.6
15+
- name: flake8
16+
run: |
17+
python -m pip install --upgrade pip
18+
pip install flake8
19+
flake8 usr/cmd/connstat --show-source --statistics

0 commit comments

Comments
 (0)