Skip to content

Commit 055b89b

Browse files
committed
Update GitHub Action to install the dev package.
1 parent 7b205a0 commit 055b89b

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/main.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
with:
1919
python-version: 3.7
2020
- name: Setup project with pip
21-
run: pip install .
22-
- name: Install Pylint
23-
run: pip install pylint
21+
run: "pip install -e .[dev]"
2422
- name: Run Pylint
25-
run: pylint sentry2csv/sentry2csv.py
23+
run: pylint sentry2csv

sentry2csv/__init__.py

Whitespace-only changes.

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[flake8]
2-
select = E,W,H
3-
max-line-length = 115
1+
[metadata]
2+
description-file = README.md
3+

0 commit comments

Comments
 (0)