From bfea62cf0a5bde320c75a7c9783fbf7767e5bcee Mon Sep 17 00:00:00 2001 From: Iori Yanokura Date: Tue, 2 Jan 2024 19:03:05 +0900 Subject: [PATCH] Add --- .github/workflows/test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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