- iOS: swift lint, build verification, and test on PR - Web: typecheck, vitest tests, build, and Vercel deployment (ready for web project) - Package.swift: defines Lendair as buildable Swift package - Test target: LendairTests with XCTest boilerplate Co-Authored-By: Paperclip <noreply@paperclip.ing>
8 lines
121 B
Swift
8 lines
121 B
Swift
import XCTest
|
|
|
|
class LendairTests: XCTestCase {
|
|
func testPackageLoads() throws {
|
|
XCTAssertTrue(true)
|
|
}
|
|
}
|