├── .github └── workflows │ └── enforce-license-compliance.yml ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── SwiftExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── SwiftExample.xcscheme ├── SwiftExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Hello.swift ├── Info.plist └── ViewController.swift ├── SwiftExampleTests ├── HelloTests.swift ├── Info.plist └── SwiftExampleTests.swift └── docs └── gather_coverage_data.png /.github/workflows/enforce-license-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/.github/workflows/enforce-license-compliance.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/README.md -------------------------------------------------------------------------------- /SwiftExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftExample.xcodeproj/xcshareddata/xcschemes/SwiftExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample.xcodeproj/xcshareddata/xcschemes/SwiftExample.xcscheme -------------------------------------------------------------------------------- /SwiftExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftExample/Hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Hello.swift -------------------------------------------------------------------------------- /SwiftExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/Info.plist -------------------------------------------------------------------------------- /SwiftExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExample/ViewController.swift -------------------------------------------------------------------------------- /SwiftExampleTests/HelloTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExampleTests/HelloTests.swift -------------------------------------------------------------------------------- /SwiftExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExampleTests/Info.plist -------------------------------------------------------------------------------- /SwiftExampleTests/SwiftExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/SwiftExampleTests/SwiftExampleTests.swift -------------------------------------------------------------------------------- /docs/gather_coverage_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecov/example-swift/HEAD/docs/gather_coverage_data.png --------------------------------------------------------------------------------