Skip to content

Commit 8db4ab7

Browse files
authored
Create prospector.yml
1 parent 1426f4a commit 8db4ab7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/prospector.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Lint all Python files
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
prospector:
7+
name: Run Prospector on all Python files
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout repository
12+
uses: actions/checkout@v2
13+
14+
- name: Setup python
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: 3.11
18+
19+
- name: Install MPF
20+
run: |
21+
pip install --upgrade pip setuptools wheel build prospector
22+
pip install -e .
23+
24+
- name: Run Prospector
25+
run: prospector

0 commit comments

Comments
 (0)