We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a314d2 commit f9bba0dCopy full SHA for f9bba0d
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM jfloff/alpine-python
2
+
3
+LABEL "com.github.actions.name"="Python Syntax Checker"
4
+LABEL "com.github.actions.description"="Run flake8 to find syntax errors in a Python repo."
5
+LABEL "com.github.actions.icon"="upload-cloud"
6
+LABEL "com.github.actions.color"="6f42c1"
7
8
+RUN pip install --upgrade pip
9
+RUN pip install flake8
10
11
+CMD ["flake8", "/github/workspace/", "--count", "--select=E901,E999,F821,F822,F823", "--show-source", "--statistics"]
0 commit comments