mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 08:55:05 +01:00
Fix build
This commit is contained in:
parent
0608b5869f
commit
6e2c31a5a9
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
||||
- uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.8
|
||||
- run: pip install --upgrade pip setuptools
|
||||
- run: pip install --upgrade pip
|
||||
- run: make install
|
||||
- run: make pycodestyle
|
||||
- run: make test
|
||||
@ -24,11 +24,14 @@ jobs:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||
python-version: [3.6, 3.7, 3.8]
|
||||
exclude:
|
||||
- os: windows-latest
|
||||
python-version: 3.8
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- run: python -m pip install --upgrade pip setuptools
|
||||
- run: python -m pip install --upgrade pip
|
||||
- run: pip install --upgrade --editable .
|
||||
- run: python setup.py test
|
||||
|
Loading…
Reference in New Issue
Block a user