Skip to content

Commit 2bbc8b8

Browse files
authored
Update CI matrix
1 parent 8987ebd commit 2bbc8b8

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
name: Test
2-
on: [push]
2+
on: [push, pull_request]
33
jobs:
4-
build:
4+
test:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: [3.7]
8+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
99
steps:
10-
- uses: actions/checkout@v1
11-
- uses: actions/setup-python@v1
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
1212
with:
1313
python-version: ${{ matrix.python-version }}
1414
- run: pip install .
1515
- run: python setup.py test
16-

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def run_tests(self):
2727
author=__author__,
2828
author_email='[email protected]',
2929
license=__licence__,
30-
url='https://github.com/jakubroztocil/httpcat',
31-
download_url='https://github.com/jakubroztocil/httpcat',
30+
url='https://github.com/httpie/httpcat',
31+
download_url='https://github.com/httpie/httpcat',
3232
py_modules=[
3333
'httpcat',
3434
],

0 commit comments

Comments
 (0)