Skip to content

Commit 1cbfca7

Browse files
authored
Merge pull request #4 from janbrasna/upd/ci-matrix
2 parents 8987ebd + 63dd4f7 commit 1cbfca7

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/test.yml

+5-6
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ def run_tests(self):
2525
long_description=open('README.md').read().strip(),
2626
version=__version__,
2727
author=__author__,
28-
author_email='jakub@roztocil.co',
28+
author_email='jakub@httpie.io',
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)