Skip to content

Commit 67da1ea

Browse files
PyLint
1 parent 18b3d5d commit 67da1ea

File tree

112 files changed

+5198
-3803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+5198
-3803
lines changed

.github/workflows/check-all.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,21 @@ jobs:
1818
- name: Checkout code by commit
1919
uses: actions/checkout@v4
2020

21-
- name: Set up Go 1.x
22-
uses: actions/setup-go@v3
21+
- uses: actions/setup-python@v4
2322
with:
24-
go-version: "1.19"
25-
id: go
23+
python-version: '3.10'
2624

2725
- name: Ensure dependencies installed
2826
shell: bash
2927
run: |
3028
make ensure-deps
3129
30+
- name: Install Dependencies
31+
run: |
32+
pip install -r requirements.txt
33+
pip install -r requirements-dev.txt
34+
pip install -r examples/requirements-examples.txt
35+
3236
- name: Run all checks
3337
shell: bash
3438
run: |

.github/workflows/check-lint.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Check - lint
2+
3+
on:
4+
pull_request:
5+
types:
6+
- assigned
7+
- opened
8+
- synchronize
9+
- reopened
10+
paths:
11+
- "deepgram/**.py"
12+
13+
jobs:
14+
checklint:
15+
name: Check shell
16+
# Only run this job if we're in the main repo, not a fork.
17+
if: github.repository == 'deepgram/deepgram-python-sdk'
18+
runs-on: ubuntu-latest
19+
steps:
20+
21+
- name: Checkout code by commit
22+
uses: actions/checkout@v4
23+
24+
- uses: actions/setup-python@v4
25+
with:
26+
python-version: '3.10'
27+
28+
- name: Ensure dependencies installed
29+
shell: bash
30+
run: |
31+
make ensure-deps
32+
33+
- name: Install Dependencies
34+
run: |
35+
pip install -r requirements.txt
36+
pip install -r requirements-dev.txt
37+
pip install -r examples/requirements-examples.txt
38+
39+
- name: Run mdlint
40+
run: |
41+
make lint

.github/workflows/check-lint.yaml.DISABLE

-53
This file was deleted.

.github/workflows/check-static.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Check - static
2+
3+
on:
4+
pull_request:
5+
types:
6+
- assigned
7+
- opened
8+
- synchronize
9+
- reopened
10+
paths:
11+
- "deepgram/**.py"
12+
13+
jobs:
14+
checkstatic:
15+
name: Check static
16+
# Only run this job if we're in the main repo, not a fork.
17+
if: github.repository == 'deepgram/deepgram-python-sdk'
18+
runs-on: ubuntu-latest
19+
steps:
20+
21+
- name: Checkout code by commit
22+
uses: actions/checkout@v4
23+
24+
- uses: actions/setup-python@v4
25+
with:
26+
python-version: '3.10'
27+
28+
- name: Ensure dependencies installed
29+
shell: bash
30+
run: |
31+
make ensure-deps
32+
33+
- name: Install Dependencies
34+
run: |
35+
pip install -r requirements.txt
36+
pip install -r requirements-dev.txt
37+
pip install -r examples/requirements-examples.txt
38+
39+
- name: Run mdlint
40+
run: |
41+
make static

0 commit comments

Comments
 (0)