Skip to content

Commit c0bba7a

Browse files
committed
feat: Update CI workflow to use SPM and adjust timer duration in ViewModel
1 parent 0cd001a commit c0bba7a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ env:
1313

1414
jobs:
1515
build-test:
16-
name: 🔨 Build & Test on Xcode
16+
name: 🔨 Build & Test with SPM
1717
runs-on: macos-15
1818

1919
strategy:
2020
matrix:
2121
build_mode: [debug, release]
22-
build_system: [xcode, spm]
22+
build_system: [spm]
2323

2424
steps:
2525
- name: 📥 Checkout Code

Sources/ClickIt/UI/ViewModels/ClickItViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ClickItViewModel: ObservableObject {
4646
// MARK: - Timer Mode Properties
4747
@Published var timerMode: TimerMode = .off
4848
@Published var timerDurationMinutes: Int = 0
49-
@Published var timerDurationSeconds: Int = 10
49+
@Published var timerDurationSeconds: Int = 5
5050
@Published var isCountingDown: Bool = false
5151
@Published var remainingTime: TimeInterval = 0
5252
@Published var timerIsActive: Bool = false

0 commit comments

Comments
 (0)