Skip to content
This repository was archived by the owner on Jan 7, 2026. It is now read-only.

perf(TPTweakViewController): sort tweak entries to improve performance #93

perf(TPTweakViewController): sort tweak entries to improve performance

perf(TPTweakViewController): sort tweak entries to improve performance #93

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run Build
run: swift build
unit_test-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: swift test --enable-test-discovery --enable-code-coverage | xcpretty
build-ventura:
strategy:
matrix:
xcode:
- '14.3.1'
- '15.2'
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run Build
run: swift build
unit_test-ventura:
strategy:
matrix:
xcode:
- '14.3.1'
- '15.2'
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: swift test --enable-test-discovery --enable-code-coverage | xcpretty
build-sonoma:
strategy:
matrix:
xcode:
- '15.4'
- '16.1'
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run Build
run: swift build
unit_test-sonoma:
strategy:
matrix:
xcode:
- '15.4'
- '16.1'
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: swift test --enable-test-discovery --enable-code-coverage | xcpretty