Skip to content

⬆️(deps): Bump github.com/apple/swift-collections from 1.4.1 to 1.6.0 #540

⬆️(deps): Bump github.com/apple/swift-collections from 1.4.1 to 1.6.0

⬆️(deps): Bump github.com/apple/swift-collections from 1.4.1 to 1.6.0 #540

Workflow file for this run

#
# .github/workflows/build-test.yaml
#
---
name: Build, Test, and Lint
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
permissions: {}
jobs:
build-test:
name: Build, Test, and Lint
strategy:
matrix:
include:
- runner: macos-14
xcode: swift
- runner: macos-15
xcode: 26.3
- runner: macos-15-intel
xcode: 26.3
- runner: macos-26
xcode: 26.4
- runner: macos-26-intel
xcode: 26.4
runs-on: ${{matrix.runner}}
defaults:
run:
# Force all run commands to not use Rosetta 2 on arm64
shell: ${{endsWith(matrix.runner, '-intel') && '/bin/zsh -Negku {0}' || 'arch -arm64 /bin/zsh -Negku {0}'}}
steps:
- name: 🛒 Checkout repo
env:
GIT_CONFIG_COUNT: 1
GIT_CONFIG_KEY_0: init.defaultBranch
GIT_CONFIG_VALUE_0: ${{github.event.repository.default_branch}}
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
# Include all history & tags for Scripts/version
fetch-depth: 0
- name: 🔧 Setup repo
run: Scripts/setup_workflow_repo
- name: 🛠 Select Xcode version
if: matrix.xcode != 'swift'
run: sudo xcode-select -s /Applications/Xcode_${{matrix.xcode}}.app
- name: 👢 Bootstrap
run: Scripts/bootstrap
- name: 🕊 Use Homebrew Core Swift
if: matrix.xcode == 'swift'
run: |
brew install swift
printf $'%s\n' "$(brew --prefix swift)/bin" >> "${GITHUB_PATH}"
- name: 🏗 Build
run: Scripts/build build-test -c release
- name: 🧪 Test
if: matrix.runner != 'macos-14'
run: Scripts/test
- name: 🚨 Lint
run: Scripts/lint