|
|
|
@ -1,24 +0,0 @@ |
|
|
|
name: Test package |
|
|
|
|
|
|
|
on: [push] |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
python-version: [2.7, 3.5, 3.6, 3.7, 3.8] |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- name: Set up Python ${{ matrix.python-version }} |
|
|
|
uses: actions/setup-python@v1 |
|
|
|
with: |
|
|
|
python-version: ${{ matrix.python-version }} |
|
|
|
- name: Build |
|
|
|
run: | |
|
|
|
python setup.py build_ext --force |
|
|
|
python setup.py develop |
|
|
|
- name: Black Check |
|
|
|
uses: jpetrucciani/black-check@19.10b0 |