1
0
mirror of https://github.com/httpie/cli.git synced 2025-12-24 00:31:09 +02:00
This commit is contained in:
Jakub Roztocil
2019-09-10 13:10:29 +02:00
parent 7f80408945
commit 2ffd8d9d9b
2 changed files with 15 additions and 8 deletions

View File

@@ -17,8 +17,15 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: upgrade pip
run: python -m pip install --upgrade pip
- name: install
run: make install
- name: test
run: make test
- name: pycodestyle
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.7'
run: make pycodestyle
- name: coveralls
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.7'
run: make coveralls