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 ba8da84 commit 2bf4eedCopy full SHA for 2bf4eed
.github/workflows/test.yml
@@ -102,6 +102,12 @@ jobs:
102
uses: actions/setup-python@v4
103
with:
104
python-version: "3.10"
105
+ - name: Upgrade pip
106
+ run: |
107
+ python -m pip install --upgrade pip
108
+ pip install --upgrade wheel setuptools build
109
+ - name: Install
110
+ run: pip install --disable-pip-version-check pyflakes
111
- name: Check examples
112
run: ./check-examples.sh
113
shell: bash
check-examples.sh
@@ -5,3 +5,5 @@ if [ $? -ne 0 ]; then
5
echo -e "Failed to build examples"
6
exit 1
7
fi
8
+
9
+pyflakes examples
0 commit comments