Skip to content

Commit aa64d89

Browse files
authored
Actions: Initial commit (#103)
* Actions: Initial commit * Update * Update * Update reqs * Bump 1.1.7
1 parent 62b933e commit aa64d89

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.github/workflows/pythonpackage.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: 'Python package: Scylla'
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
max-parallel: 2
11+
matrix:
12+
python-version: [3.6, ]# [2.7, 3.5, 3.6, 3.7]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v1
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install dependencies
21+
run: |
22+
sudo apt-get install libgnutls28-dev libcurl4-openssl-dev libssl-dev
23+
pip install -r tests/requirements-test.txt
24+
python setup.py install
25+
- name: Lint with flake8
26+
run: |
27+
make style-check
28+
- name: Test with pytest
29+
run: |
30+
pytest --cov=./scylla tests

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ peewee==3.2.2
33
requests==2.22.0
44
requests-html==0.9.0
55
pycurl==7.43.0.1
6-
sanic==18.12.0
7-
sanic-cors==0.9.7
6+
sanic==19.6.3
7+
sanic-cors==0.9.9
88
schedule==0.5.0
99
six==1.11.0
1010
pyppeteer==0.0.25

scylla/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.6'
1+
__version__ = '1.1.7'

0 commit comments

Comments
 (0)