From 8abdafbd72ffaa4cd9db13ac36336bcca6457e55 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 15 Mar 2023 14:20:29 -0400 Subject: [PATCH] Added ci workflows --- Tests/CliVersionTests/CliVersionTests.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/CliVersionTests/CliVersionTests.swift b/Tests/CliVersionTests/CliVersionTests.swift index 653cabf..1c9c234 100644 --- a/Tests/CliVersionTests/CliVersionTests.swift +++ b/Tests/CliVersionTests/CliVersionTests.swift @@ -53,12 +53,14 @@ final class GitVersionTests: XCTestCase { .gitCurrentBranch(gitDirectory: gitDir), trimmingCharactersIn: .whitespacesAndNewlines ) + print("BRANCH: \(branch)") XCTAssertEqual(branch, "main") let commit = try shellClient.background( .gitCurrentSha(gitDirectory: gitDir), trimmingCharactersIn: .whitespacesAndNewlines ) + print("COMMIT: \(commit)") XCTAssertNotEqual(commit, "") }