Skip to content

Commit

Permalink
fix: Workflows w/ ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Eltik committed Aug 25, 2024
1 parent 37ea842 commit b219cb6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build and Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: macos-latest

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install Tuist
run: |
curl -Ls https://install.tuist.app | bash
- name: Install dependencies
run: |
tuist fetch
- name: Generate Xcode project
run: |
tuist generate
- name: Build and test
run: |
xcodebuild -workspace Chouten.xcworkspace -scheme YourScheme -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 12,OS=latest' clean build test

0 comments on commit b219cb6

Please sign in to comment.