diff --git a/.github/workflows/basic_tests.yml b/.github/workflows/basic_tests.yml index 1a48a1a..052a7a3 100644 --- a/.github/workflows/basic_tests.yml +++ b/.github/workflows/basic_tests.yml @@ -9,12 +9,9 @@ on: jobs: run_tests: - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest strategy: - fail-fast: false - matrix: - os: ["ubuntu-latest", "macos-latest"] - python-version: ["3.10"] + fail-fast: true steps: @@ -28,7 +25,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: 3.10 - name: Install Poetry shell: bash -l {0}