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 c4fe31f commit 504ca59Copy full SHA for 504ca59
.github/workflows/tests.yml
@@ -66,3 +66,35 @@ jobs:
66
fi
67
echo $TEMP
68
python -m tox
69
+
70
+ checks:
71
+ name: "Quality checks"
72
+ runs-on: "ubuntu-latest"
73
74
+ steps:
75
+ - name: "Check out the repo"
76
+ uses: "actions/checkout@v2"
77
78
+ - name: "Set up Python"
79
+ uses: "actions/setup-python@v2"
80
+ with:
81
+ python-version: "3.8"
82
83
+ - name: "Install dependencies"
84
+ run: |
85
+ set -xe
86
+ python -VV
87
+ python -m site
88
+ python -m pip install -r requirements.txt
89
90
+ - name: "Run check"
91
92
+ python -m tox -e check
93
94
+ - name: "Run pkgcheck"
95
96
+ python -m tox -e pkgcheck
97
98
+ - name: "Run doc"
99
100
+ python -m tox -e doc
0 commit comments