Skip to content

Commit a4abed8

Browse files
committed
minor updates
1 parent f53a537 commit a4abed8

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed

.github/workflows/swift.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,19 @@ on:
1212
jobs:
1313
build:
1414

15-
runs-on: macos-14
15+
runs-on: macos-15
1616

1717
steps:
18-
- run: |
19-
sudo xcode-select -s /Applications/Xcode_16.2.app
20-
- uses: actions/checkout@v3
18+
- uses: maxim-lobanov/setup-xcode@v1
19+
with:
20+
xcode-version: latest-stable
21+
22+
- uses: actions/checkout@v4
23+
2124
- name: Build
22-
run: swift build -v
25+
run: |
26+
xcodebuild
27+
2328
- name: Run tests
24-
run: swift test -v
29+
run: |
30+
xcodebuild test

DIExample.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@
597597
CURRENT_PROJECT_VERSION = 1;
598598
DEAD_CODE_STRIPPING = YES;
599599
DEVELOPMENT_ASSET_PATHS = "\"DIExample/Preview Content\"";
600+
DEVELOPMENT_TEAM = "";
600601
ENABLE_HARDENED_RUNTIME = YES;
601602
ENABLE_PREVIEWS = YES;
602603
GENERATE_INFOPLIST_FILE = YES;
@@ -623,6 +624,7 @@
623624
CURRENT_PROJECT_VERSION = 1;
624625
DEAD_CODE_STRIPPING = YES;
625626
DEVELOPMENT_ASSET_PATHS = "\"DIExample/Preview Content\"";
627+
DEVELOPMENT_TEAM = "";
626628
ENABLE_HARDENED_RUNTIME = YES;
627629
ENABLE_PREVIEWS = YES;
628630
GENERATE_INFOPLIST_FILE = YES;
@@ -645,6 +647,7 @@
645647
CODE_SIGN_STYLE = Automatic;
646648
CURRENT_PROJECT_VERSION = 1;
647649
DEAD_CODE_STRIPPING = YES;
650+
DEVELOPMENT_TEAM = "";
648651
GENERATE_INFOPLIST_FILE = YES;
649652
MARKETING_VERSION = 1.0;
650653
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.DIExampleTests;
@@ -661,6 +664,7 @@
661664
CODE_SIGN_STYLE = Automatic;
662665
CURRENT_PROJECT_VERSION = 1;
663666
DEAD_CODE_STRIPPING = YES;
667+
DEVELOPMENT_TEAM = "";
664668
GENERATE_INFOPLIST_FILE = YES;
665669
MARKETING_VERSION = 1.0;
666670
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.DIExampleTests;
@@ -676,6 +680,7 @@
676680
CODE_SIGN_STYLE = Automatic;
677681
CURRENT_PROJECT_VERSION = 1;
678682
DEAD_CODE_STRIPPING = YES;
683+
DEVELOPMENT_TEAM = "";
679684
GENERATE_INFOPLIST_FILE = YES;
680685
MARKETING_VERSION = 1.0;
681686
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.DIExampleUITests;
@@ -691,6 +696,7 @@
691696
CODE_SIGN_STYLE = Automatic;
692697
CURRENT_PROJECT_VERSION = 1;
693698
DEAD_CODE_STRIPPING = YES;
699+
DEVELOPMENT_TEAM = "";
694700
GENERATE_INFOPLIST_FILE = YES;
695701
MARKETING_VERSION = 1.0;
696702
PRODUCT_BUNDLE_IDENTIFIER = com.jamf.DIExampleUITests;

DIExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DIExample/Posts14/PostListView14.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import SwiftUI
99

1010
@available(macOS 14.0, *)
11-
@MainActor struct PostListView14: View {
11+
struct PostListView14: View {
1212
@Bindable private var viewModel = PostListViewModel14()
1313
@State private var selection: Typicode.Post?
1414

0 commit comments

Comments
 (0)