diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f4f9dc..de0cf56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,11 +11,11 @@ jobs: strategy: matrix: py: - - "3.9" + - "3.12" os: - - "macos-latest" + - "ubuntu-latest" architecture: - - ARM64 + - x64 name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}" runs-on: ${{ matrix.os }} steps: @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: make build-for-test - name: Run tests - run: make test-matrix + run: pytest coverage: runs-on: ubuntu-latest name: Report coverage @@ -41,7 +41,7 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.12 architecture: x64 - name: Install dependencies run: make build-for-test @@ -55,7 +55,7 @@ jobs: - name: Setup python uses: actions/setup-python@v4 with: - python-version: 3.9 + python-version: 3.12 architecture: x64 - name: Install dependencies run: make build