Skip to content

Commit

Permalink
chore: GH actions to use a python version matrix (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
vj-codes authored May 1, 2021
1 parent d42f1f6 commit ca4728a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ jobs:
build:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.9]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit ca4728a

Please sign in to comment.