Browse Source

ci: drop main tests on main

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
pull/5705/head
Henry Schreiner 1 month ago committed by Henry Schreiner
parent
commit
21c9dd11bc
  1. 17
      .github/workflows/ci.yml

17
.github/workflows/ci.yml

@ -8,11 +8,6 @@ on: @@ -8,11 +8,6 @@ on:
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
- stable
- v*
permissions: read-all
@ -175,22 +170,22 @@ jobs: @@ -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

Loading…
Cancel
Save