From commits-return-1205-archive-asf-public=cust-asf.ponee.io@ponymail.incubator.apache.org Wed Aug 14 10:01:02 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 24B54180652 for ; Wed, 14 Aug 2019 12:01:02 +0200 (CEST) Received: (qmail 8119 invoked by uid 500); 14 Aug 2019 10:01:01 -0000 Mailing-List: contact commits-help@ponymail.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ponymail.incubator.apache.org Delivered-To: mailing list commits@ponymail.incubator.apache.org Received: (qmail 8044 invoked by uid 99); 14 Aug 2019 10:01:01 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Aug 2019 10:01:01 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 646FF85F34; Wed, 14 Aug 2019 10:01:01 +0000 (UTC) Date: Wed, 14 Aug 2019 10:01:01 +0000 To: "commits@ponymail.apache.org" Subject: [incubator-ponymail] branch master updated: Update pythonpackage.yml MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156577686136.14600.9322785501698263094@gitbox.apache.org> From: sebb@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-ponymail X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 0acfd049357b144af8abc2672704e7a93cf6af3c X-Git-Newrev: 68bd381cabc3844c5fc86117ced95fc4f7f75051 X-Git-Rev: 68bd381cabc3844c5fc86117ced95fc4f7f75051 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git The following commit(s) were added to refs/heads/master by this push: new 68bd381 Update pythonpackage.yml 68bd381 is described below commit 68bd381cabc3844c5fc86117ced95fc4f7f75051 Author: sebbASF AuthorDate: Wed Aug 14 11:00:57 2019 +0100 Update pythonpackage.yml --- .github/workflows/pythonpackage.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml new file mode 100644 index 0000000..1d42043 --- /dev/null +++ b/.github/workflows/pythonpackage.yml @@ -0,0 +1,27 @@ +name: Python package + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [2.7, 3.5, 3.6, 3.7] + + steps: + - uses: actions/checkout@master + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Test with pytest + run: | + pip install pytest + pytest