Skip to content

Commit a6cc259

Browse files
committed
Merge branch 'master' into develop
2 parents 5dc8627 + 7d4f576 commit a6cc259

5 files changed

Lines changed: 44 additions & 34 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/stale.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_extends: .github

.github/workflows/test.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- "master"
7+
- "develop"
8+
pull_request:
9+
types: [ready_for_review, synchronize, opened]
10+
11+
jobs:
12+
unit:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
max-parallel: 4
16+
matrix:
17+
python-version: [3.5, 3.6, 3.7]
18+
19+
steps:
20+
- uses: actions/checkout@v1
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v1
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
- name: install dependencies
26+
run: |
27+
python3 -m venv venv
28+
. venv/bin/activate
29+
pip install .[test]
30+
- name: run tests
31+
run: |
32+
. venv/bin/activate
33+
mkdir test-results
34+
pytest -v -s --junitxml=test-reports/junit.xml --cov=crypto --cov-config=.coveragerc --cov-report xml
35+
- name: Codecov
36+
run: bash <(curl -s https://codecov.io/bash) -t ${{ secrets.CODECOV_TOKEN }}

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
[![Latest Version](https://badgen.now.sh/github/release/ArkEcosystem/python-crypto)](https://github.com/ArkEcosystem/python-crypto/releases/latest)
1212
[![License: MIT](https://badgen.now.sh/badge/license/MIT/green)](https://opensource.org/licenses/MIT)
1313

14+
> Lead Maintainer: [Brian Faust](https://github.com/faustbrian)
15+
1416
## Guide for contributing
1517

1618
Before you start contributing please take some time and check our official [Python Development Guidelines](https://github.com/ArkEcosystem/development-guidelines/blob/master/Python/README.md) which follow the widely accepted PEP8 Python Style Guide. 🖋
@@ -34,11 +36,8 @@ If you discover a security vulnerability within this package, please send an e-m
3436

3537
## Credits
3638

37-
- [Rok Halužan](https://github.com/roks0n)
38-
- [Tomaž Šifrer](https://github.com/tsifrer)
39-
- [Brian Faust](https://github.com/faustbrian)
40-
- [All Contributors](../../contributors)
39+
This project exists thanks to all the people who [contribute](../../contributors).
4140

4241
## License
4342

44-
[MIT](LICENSE) © [ArkEcosystem](https://ark.io)
43+
[MIT](LICENSE) © [ARK Ecosystem](https://ark.io)

renovate.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["config:base", ":preserveSemverRanges"]
3+
}

0 commit comments

Comments
 (0)