-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial workable Swift Package. * Repo // GitHub Continuous Integration. * Repo // Nomenclature updates to fit Swift style.
- Loading branch information
Showing
19 changed files
with
416 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: unit-test | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: unit-test | ||
runs-on: macOS-latest | ||
env: | ||
GIT_SSL_NO_VERIFY: true | ||
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: test | ||
run: swift test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "swift-collections", | ||
"repositoryURL": "https://gitee.com/mirrors_apple/swift-collections", | ||
"state": { | ||
"branch": null, | ||
"revision": "48254824bb4248676bf7ce56014ff57b142b77eb", | ||
"version": "1.0.2" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Megrez", | ||
products: [ | ||
.library( | ||
name: "Megrez", | ||
targets: ["Megrez"] | ||
) | ||
], | ||
dependencies: [ | ||
.package(url: "https://gitee.com/mirrors_apple/swift-collections", from: "1.0.2") | ||
], | ||
targets: [ | ||
.target( | ||
name: "Megrez", | ||
dependencies: [ | ||
.product(name: "OrderedCollections", package: "swift-collections") | ||
] | ||
), | ||
.testTarget( | ||
name: "MegrezTests", | ||
dependencies: ["Megrez"] | ||
), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.