From bdfb7118c951ce1fc412197e051e103ee48aad02 Mon Sep 17 00:00:00 2001 From: Sam Flattery Date: Mon, 6 Jan 2020 19:17:29 +0000 Subject: [PATCH 1/2] fix pomodoro icon not showing up on catalina --- MTMR/Widgets/PomodoroBarItem.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MTMR/Widgets/PomodoroBarItem.swift b/MTMR/Widgets/PomodoroBarItem.swift index 7b824f7..7e081f7 100644 --- a/MTMR/Widgets/PomodoroBarItem.swift +++ b/MTMR/Widgets/PomodoroBarItem.swift @@ -35,7 +35,7 @@ class PomodoroBarItem: CustomButtonTouchBarItem, Widget { case none } - private let defaultTitle = "🍅" + private let defaultTitle = "🍅 " private let workTime: TimeInterval private let restTime: TimeInterval private var typeTime: TimeTypes = .none From 093faa2c021a12e334dc28693b4b069412e47319 Mon Sep 17 00:00:00 2001 From: Anton Palgunov Date: Tue, 14 Jan 2020 10:24:24 +0000 Subject: [PATCH 2/2] Create swift.yml --- .github/workflows/swift.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/swift.yml diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..2e76632 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,15 @@ +name: Swift + +on: [push] + +jobs: + build: + + runs-on: macOS-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v