Skip to content

Commit b4dc9e4

Browse files
chore: Rename package name to follow swift convention (#3)
1 parent b911046 commit b4dc9e4

15 files changed

+10
-10
lines changed

.github/workflows/swift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Run tests
2323
run: swift test --enable-code-coverage
2424
- name: Prepare Code Coverage
25-
run: xcrun llvm-cov export -format="lcov" .build/debug/go-feature-flag-providerPackageTests.xctest/Contents/MacOS/go-feature-flag-providerPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov
25+
run: xcrun llvm-cov export -format="lcov" .build/debug/GOFeatureFlagPackageTests.xctest/Contents/MacOS/GOFeatureFlagPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov
2626
- name: Upload coverage reports to Codecov
2727
uses: codecov/codecov-action@v4
2828
with:

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "go-feature-flag-provider",
7+
name: "GOFeatureFlag",
88
platforms: [
99
.iOS(.v14),
1010
.macOS(.v12)
1111
],
1212
products: [
1313
.library(
14-
name: "go-feature-flag-provider",
15-
targets: ["go-feature-flag-provider"])
14+
name: "GOFeatureFlag",
15+
targets: ["GOFeatureFlag"])
1616
],
1717
dependencies: [
1818
.package(url: "https://github.com/open-feature/swift-sdk.git", from: "0.1.0")
1919
],
2020
targets: [
2121
.target(
22-
name: "go-feature-flag-provider",
22+
name: "GOFeatureFlag",
2323
dependencies: [
2424
.product(name: "OpenFeature", package: "swift-sdk")
2525
],
2626
plugins:[]
2727
),
2828
.testTarget(
29-
name: "go-feature-flag-providerTests",
29+
name: "GOFeatureFlagTests",
3030
dependencies: [
31-
"go-feature-flag-provider"
31+
"GOFeatureFlag"
3232
]
3333
)
3434
]

0 commit comments

Comments
 (0)