File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 10
10
branches : [ master ]
11
11
12
12
jobs :
13
- build :
13
+ testCode :
14
14
15
15
runs-on : ubuntu-latest
16
16
strategy :
41
41
- name : Test with pytest
42
42
run : |
43
43
pytest
44
+
45
+ testUploadability :
46
+
47
+ runs-on : ubuntu-latest
48
+
49
+ steps :
50
+ - uses : actions/checkout@v2
51
+ - name : Set up Python
52
+ uses : actions/setup-python@v2
53
+ with :
54
+ python-version : ' 3.x'
55
+ - name : Install dependencies
56
+ run : |
57
+ python -m pip install --upgrade pip
58
+ pip install setuptools wheel twine
59
+ - name : Build and check
60
+ run : |
61
+ python setup.py sdist bdist_wheel
62
+ twine check dist/*
Original file line number Diff line number Diff line change 3
3
from mypy_ls import _version
4
4
5
5
if __name__ == "__main__" :
6
- setup (version = _version .__version__ )
6
+ setup (version = _version .__version__ , long_description_content_type = "text/x-rst" )
You can’t perform that action at this time.
0 commit comments