This commit is contained in:
Vladan Popovic 2020-09-06 03:54:48 +02:00
parent 524e27eafe
commit 2df73b76a8
3 changed files with 27 additions and 1 deletions

23
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,23 @@
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
# Run tox using the version of Python in `PATH`
run: tox

View File

@ -2,6 +2,9 @@
Website stats collector demo Website stats collector demo
============================ ============================
.. image:: https://github.com/vladan/aiven-site-checker/workflows/chweb/badge.svg
:target: https://github.com/vladan/aiven-site-checker/actions?query=branch%3Amaster
CHWEB is a website checking tool. CHWEB is a website checking tool.
ATM in its very early stages meant to demo `aiven <https://aiven.io>`_'s ATM in its very early stages meant to demo `aiven <https://aiven.io>`_'s

View File

@ -7,7 +7,7 @@ from setuptools import setup # type: ignore
setup( setup(
use_scm_version=True, use_scm_version=True,
setup_requires=['setuptools_scm'], setup_requires=['setuptools_scm'],
python_requires='>=3.8, <4', python_requires='>=3.6, <4',
install_requires=[ install_requires=[
'aiokafka==0.6.0', 'aiokafka==0.6.0',
'asyncpg==0.21.0', 'asyncpg==0.21.0',