Skip to content

Merge pull request #4 from eddyv73/develop #21

Merge pull request #4 from eddyv73/develop

Merge pull request #4 from eddyv73/develop #21

Workflow file for this run

name: Xcode
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: xcodebuild -project kubec-cmd.xcodeproj -scheme 'kubec-cmd' -configuration Release build -derivedDataPath DerivedData | xcpretty
- name: Run tests
run: xcodebuild -project kubec-cmd.xcodeproj -scheme 'kubec-cmd' -configuration Debug test | xcpretty
- name: Upload binary
uses: actions/upload-artifact@v2
with:
name: kubec-cmd-binary
path: kubec-cmd.bin