Skip to content

Commit

Permalink
Update lint_and_pytest.yml
Browse files Browse the repository at this point in the history
Adding multi-version python text matrix
  • Loading branch information
iluvcapra committed Jun 21, 2023
1 parent 35ca651 commit caeb7e2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/lint_and_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@ permissions:

jobs:
build:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

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

0 comments on commit caeb7e2

Please sign in to comment.