Worked on CI
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
testing:
|
testing:
|
||||||
script: "make test"
|
script: "python3 -m unittest discover"
|
||||||
|
|
||||||
linting:
|
linting:
|
||||||
script: "make linting"
|
script: "python3 -m pylint --extension-pkg-whitelist=cv2 shenzhen_solitaire test"
|
||||||
|
|
||||||
typing:
|
typing:
|
||||||
script: "make typing"
|
script: "python3 -m mypy --strict shenzhen_solitaire test"
|
||||||
|
|||||||
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk add python3 python3-dev gcc musl-dev
|
||||||
|
|
||||||
|
RUN python3 -m pip install --upgrade pip
|
||||||
|
|
||||||
|
RUN python3 -m pip install mypy pylint
|
||||||
Reference in New Issue
Block a user