From e7e6fadf92a8ab1945ed374a639a3ac06c2a7e08 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 10 Jun 2024 18:54:51 -0700 Subject: [PATCH] Add Xcode 16 to PR testing matrix --- scripts/pr-ci-matrix.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pr-ci-matrix.rb b/scripts/pr-ci-matrix.rb index b3beb155da..a77799ee75 100755 --- a/scripts/pr-ci-matrix.rb +++ b/scripts/pr-ci-matrix.rb @@ -86,7 +86,7 @@ def action # because they don't care about Xcode versions, while some others are latest-only # because they're particularly slow to run. module Workflows - XCODE_VERSIONS = %w(15.1 15.2 15.3 15.4) + XCODE_VERSIONS = %w(15.1 15.2 15.3 15.4 16\ beta) all = ->(v) { true } latest_only = ->(v) { v == XCODE_VERSIONS.last }