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 a3b5d2f commit f308412Copy full SHA for f308412
.github/workflows/python-package.yml
@@ -21,10 +21,6 @@ jobs:
21
uses: actions/setup-python@v1
22
with:
23
python-version: ${{ matrix.python-version }}
24
- - name: Print the platform name
25
- run: |
26
- echo "import sys; print(sys.platform)" > print_platform.py
27
- python print_platform.py
28
- name: Install dependencies
29
run: |
30
python -m pip install --upgrade pip
@@ -37,6 +33,10 @@ jobs:
37
33
pip install flake8
38
34
# Stop the build if there are flake8 issues
39
35
flake8 . --count --show-source --statistics --exclude=temp
36
+ - name: Print the platform name
+ run: |
+ echo "import sys; print(sys.platform)" > print_platform.py
+ python print_platform.py
40
- name: Install Chrome and Firefox
41
42
sudo apt install google-chrome-stable
0 commit comments