diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8131bcd2..2a8c8cad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,16 +40,16 @@ jobs: python-version: [3.6, 3.8, 3.11] steps: - name: Set up Python for Self-Hosted Linux arm64 - - if: ${{ matrix.arch == 'arm64' }} - uses: deadsnakes/action@v2.1.1 - with: - python-version: ${{ matrix.python-version }} + if: ${{ matrix.arch == 'arm64' }} + uses: deadsnakes/action@v2.1.1 + with: + python-version: ${{ matrix.python-version }} - name: Set up Python for Self-Hosted Linux amd64 - - if: ${{ matrix.arch == 'amd64' }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - cache: 'pip' + if: ${{ matrix.arch == 'amd64' }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + cache: 'pip' - name: Check Python Version run: python --version - name: Install Pytest