-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 18cee0d
Showing
46 changed files
with
2,899 additions
and
0 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,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
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,26 @@ | ||
# .github/workflows/documentation.yml | ||
name: Documentation | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Generate Documentation | ||
uses: SwiftDocOrg/swift-doc@master | ||
with: | ||
inputs: "Sources" | ||
module-name: ComposableEnvironment | ||
output: "Documentation" | ||
- name: Upload Documentation to Wiki | ||
uses: SwiftDocOrg/github-wiki-publish-action@v1 | ||
with: | ||
path: "Documentation" | ||
env: | ||
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |
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,27 @@ | ||
name: Format | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
swift_format: | ||
name: swift-format | ||
runs-on: macOS-11 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Xcode Select | ||
run: sudo xcode-select -s /Applications/Xcode_13.0.app | ||
- name: Tap | ||
run: brew tap tgrapperon/formulae | ||
- name: Install | ||
run: brew install Formulae/swift-format@5.5 | ||
- name: Format | ||
run: make format | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Run swift-format | ||
branch: 'main' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,19 @@ | ||
name: Swift | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build | ||
run: swift build -v | ||
- name: Run tests | ||
run: swift test -v |
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,7 @@ | ||
.DS_Store | ||
/.build | ||
/Packages | ||
/*.xcodeproj | ||
xcuserdata/ | ||
DerivedData/ | ||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata |
8 changes: 8 additions & 0 deletions
8
.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
17 changes: 17 additions & 0 deletions
17
ComposableEffectIdentifier.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
ComposableEffectIdentifier.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
70 changes: 70 additions & 0 deletions
70
ComposableEffectIdentifier.xcworkspace/xcshareddata/swiftpm/Package.resolved
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,70 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "combine-schedulers", | ||
"repositoryURL": "https://github.com/pointfreeco/combine-schedulers", | ||
"state": { | ||
"branch": null, | ||
"revision": "4cf088c29a20f52be0f2ca54992b492c54e0076b", | ||
"version": "0.5.3" | ||
} | ||
}, | ||
{ | ||
"package": "swift-case-paths", | ||
"repositoryURL": "https://github.com/pointfreeco/swift-case-paths", | ||
"state": { | ||
"branch": null, | ||
"revision": "241301b67d8551c26d8f09bd2c0e52cc49f18007", | ||
"version": "0.8.0" | ||
} | ||
}, | ||
{ | ||
"package": "swift-collections", | ||
"repositoryURL": "https://github.com/apple/swift-collections", | ||
"state": { | ||
"branch": null, | ||
"revision": "48254824bb4248676bf7ce56014ff57b142b77eb", | ||
"version": "1.0.2" | ||
} | ||
}, | ||
{ | ||
"package": "swift-composable-architecture", | ||
"repositoryURL": "https://github.com/pointfreeco/swift-composable-architecture", | ||
"state": { | ||
"branch": null, | ||
"revision": "ba9c626ab1b2b6af8cf684eebb2ab472fa5b6753", | ||
"version": "0.33.1" | ||
} | ||
}, | ||
{ | ||
"package": "swift-custom-dump", | ||
"repositoryURL": "https://github.com/pointfreeco/swift-custom-dump", | ||
"state": { | ||
"branch": null, | ||
"revision": "51698ece74ecf31959d3fa81733f0a5363ef1b4e", | ||
"version": "0.3.0" | ||
} | ||
}, | ||
{ | ||
"package": "swift-identified-collections", | ||
"repositoryURL": "https://github.com/pointfreeco/swift-identified-collections", | ||
"state": { | ||
"branch": null, | ||
"revision": "680bf440178a78a627b1c2c64c0855f6523ad5b9", | ||
"version": "0.3.2" | ||
} | ||
}, | ||
{ | ||
"package": "xctest-dynamic-overlay", | ||
"repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay", | ||
"state": { | ||
"branch": null, | ||
"revision": "50a70a9d3583fe228ce672e8923010c8df2deddd", | ||
"version": "0.2.1" | ||
} | ||
} | ||
] | ||
}, | ||
"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,9 @@ | ||
.DS_Store | ||
/.build | ||
/Packages | ||
/*.xcodeproj | ||
xcuserdata/ | ||
DerivedData/ | ||
.swiftpm/config/registries.json | ||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
.netrc |
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,35 @@ | ||
// swift-tools-version: 5.5 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "LonelyTimer", | ||
platforms: [ | ||
.iOS(.v15), | ||
.macOS(.v12), | ||
.tvOS(.v15), | ||
.watchOS(.v8), | ||
], | ||
products: [ | ||
.library( | ||
name: "LonelyTimer", | ||
targets: ["LonelyTimer"]) | ||
], | ||
dependencies: [ | ||
.package(path: "../../"), | ||
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "0.33.1"), | ||
], | ||
targets: [ | ||
.target( | ||
name: "LonelyTimer", | ||
dependencies: [ | ||
.product( | ||
name: "ComposableArchitecture", | ||
package: "swift-composable-architecture"), | ||
.product( | ||
name: "ComposableEffectIdentifier", | ||
package: "composable-effect-identifier"), | ||
]) | ||
] | ||
) |
Oops, something went wrong.