From 8d597ce68cea0b84c26cf6ccb99f4639bf28f017 Mon Sep 17 00:00:00 2001 From: Il`ya Date: Sun, 10 Nov 2019 04:17:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20workflow=20=D0=B4=D0=B5=D0=BF=D0=BB?= =?UTF-8?q?=D0=BE=D1=8F=20=D0=BD=D0=B0=20PyPI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pypi.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index f6e8044..439b723 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -6,13 +6,17 @@ on: jobs: deploy: - runs-on: [ubuntu-latest] + runs-on: ${{matrix.os}} + strategy: + matrix: + os: [ubuntu-latest] + python-version: [3.8] steps: - uses: actions/checkout@v1 - - name: Set up Python + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: - python-version: [3.8] + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip