From 21c9dd11bcc92341ecba4469c743e97996ba0c66 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 30 May 2025 21:13:46 -0400 Subject: [PATCH] ci: drop main tests on main Signed-off-by: Henry Schreiner --- .github/workflows/ci.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0778e244e..59e69265b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,6 @@ on: - synchronize - reopened - ready_for_review - push: - branches: - - master - - stable - - v* permissions: read-all @@ -175,22 +170,22 @@ jobs: matrix: include: - runs-on: ubuntu-latest - python: '3.9' + python-version: '3.9' - runs-on: macos-latest - python: '3.12' + python-version: '3.12' - runs-on: windows-latest - python: '3.11' + python-version: '3.11' - name: "🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • x64 inplace C++14" + name: "🐍 ${{ matrix.python-version }} • ${{ matrix.runs-on }} • x64 inplace C++14" runs-on: ${{ matrix.runs-on }} steps: - uses: actions/checkout@v4 - - name: Setup Python ${{ matrix.python }} + - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python }} + python-version: ${{ matrix.python-version }} allow-prereleases: true - name: Install uv