diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 39f09fe..e516253 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -117,7 +117,6 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: - name: Checkout repository @@ -125,7 +124,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.9" - name: Install SDK run: pip install . - name: Run test suite diff --git a/.github/workflows/full.yaml b/.github/workflows/full.yaml new file mode 100644 index 0000000..4fd04d1 --- /dev/null +++ b/.github/workflows/full.yaml @@ -0,0 +1,26 @@ +name: Full compatibility tests +on: + schedule: + # run daily + - cron: "0 0 * * *" + workflow_dispatch: + +jobs: + test-pip: + name: Run test suite with pip installation + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ["3.9", "3.10", "3.11", "3.12"] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Install Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install SDK + run: pip install . + - name: Run test suite + run: python -m unittest -v