Skip to content

Commit

Permalink
Fix matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Jan 1, 2024
1 parent a7e32ad commit 677eaf5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version:
version:
- "3.7"
- "3.8"
- "3.9"
Expand All @@ -26,15 +26,15 @@ jobs:
- name: Set up Python for Poetry
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
python-version: "${{ matrix.version }}"
- name: Install poetry
run: |
python -m pip install poetry pip
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
id: python
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
python-version: "${{ matrix.version }}"
cache: "poetry"
- name: Set up Node.js
id: node
Expand Down

0 comments on commit 677eaf5

Please sign in to comment.