Delete pythonpackage.yml

This commit is contained in:
Andrei D 2020-11-11 01:04:17 +03:00
parent 98eac7977d
commit b1b61f71f3
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python setup.py install
- name: Test with pytest
env:
anticaptcha_key: ${{ secrets.anticaptcha_key }}
run: make test