Skip to content

Convert from Travis CI to GitHub Actions #5

Convert from Travis CI to GitHub Actions

Convert from Travis CI to GitHub Actions #5

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
- name: Show Xcode version
run: xcodebuild -version
- name: Run tests
run: |
xcodebuild \
-scheme "hsluv-objc" \
-destination "platform=macOS,arch=x86_64" \
-enableCodeCoverage YES \
CODE_SIGNING_REQUIRED=NO \
test