Skip to content

Commit

Permalink
Create workflow (#254)
Browse files Browse the repository at this point in the history
* Create workflow

* uses: actions/checkout@v4

---------

Co-authored-by: Christian Clauss <[email protected]>
  • Loading branch information
zadirajack and cclauss authored Aug 15, 2024
1 parent b9798af commit aa37fb7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build Pyto

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Xcode
run: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

- name: Install dependencies
run: ./setup.sh

- name: Build
run: xcodebuild -workspace Pyto.xcworkspace -scheme Pyto -configuration Release

0 comments on commit aa37fb7

Please sign in to comment.