diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index 629fa1f..fec42b2 100644 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -11,7 +11,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: + version: - "3.7" - "3.8" - "3.9" @@ -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