Skip to content

ci: use GitHub-hosted runners with generic Xcode path #2

ci: use GitHub-hosted runners with generic Xcode path

ci: use GitHub-hosted runners with generic Xcode path #2

Workflow file for this run

name: macOS
on:
push:
branches: ["**"]
jobs:
macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v