You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# See https://github.com/actions/starter-workflows/blob/1067f16ad8a1eac328834e4b0ae24f7d206f810d/ci/pylint.yml for original reference file
2
+
name: Run Linting/Formatting on Pull Requests
3
+
4
+
on:
5
+
- push
6
+
- pull_request
7
+
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore for syntax docs
8
+
# if you want to filter out branches, delete the `- pull_request` and uncomment these lines :
9
+
# pull_request:
10
+
# branches:
11
+
# - master
12
+
# branches-ignore:
13
+
# - development
14
+
15
+
jobs:
16
+
lint:
17
+
runs-on: ubuntu-latest
18
+
steps:
19
+
- name: Checkout Code
20
+
uses: actions/checkout@v3
21
+
- name: Set up Python 3.10
22
+
uses: actions/setup-python@v3
23
+
with:
24
+
python-version: 3.10.6
25
+
- name: Install PyLint
26
+
run: |
27
+
python -m pip install --upgrade pip
28
+
pip install pylint
29
+
# This lets PyLint check to see if it can resolve imports
0 commit comments