Skip to content

Commit

Permalink
run matrix for testing multiple versions
Browse files Browse the repository at this point in the history
  • Loading branch information
abatilo committed Nov 19, 2019
1 parent f33acea commit daacfbf
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@ on: push

jobs:
ci:
strategy:
matrix:
python_version: [3.5.9, 3.7.0, 3.8.0]
poetry_version: [0.12.17]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run image
uses: ./
with:
python_version: 3.8.0
poetry_version: 0.12.17
python_version: ${{ matrix.python_version }}
poetry_version: ${{ matrix.poetry_version }}
release:
needs: ci
runs-on: ubuntu-latest
steps:
- name: Generate release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit daacfbf

Please sign in to comment.