8000 Simplify Bazel verification · jpsim/SourceKitten@e9caf11 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Simplify Bazel verification #361

Simplify Bazel verification

Simplify Bazel verification #361

Workflow file for this run

name: xcodebuild
on:
push:
branches: [main]
pull_request:
branches: ['*']
jobs:
Xcode:
strategy:
matrix:
xcode_version: ['15.3', '15.4', '16.1', '16.2']
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode_version }}
- run: xcodebuild -version
- run: xcodebuild -scheme SourceKitten-Package -parallel-testing-enabled NO test -destination platform=macOS
0