Skip to content

Commit

Permalink
github actions update
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn committed Jan 25, 2023
1 parent dcd8302 commit 6aae8c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Build & Test

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

jobs:

build:

runs-on: macOS-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Install
run: pod install
- name: Build & Test
run: xcodebuild test -workspace tiff-ios.xcworkspace -scheme tiff-ios -destination 'platform=iOS Simulator,OS=latest,name=iPhone 11'
run: xcodebuild test -workspace tiff-ios.xcworkspace -scheme tiff-ios -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14'
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
- master

jobs:

build:

runs-on: macOS-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Install
run: pod install
- name: Build
run: xcodebuild build-for-testing -workspace tiff-ios.xcworkspace -scheme tiff-ios -destination 'platform=iOS Simulator,OS=latest,name=iPhone 11'
run: xcodebuild build-for-testing -workspace tiff-ios.xcworkspace -scheme tiff-ios -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14'

0 comments on commit 6aae8c3

Please sign in to comment.