This repository was archived by the owner on Apr 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Vapor 4 support + custom cache keys #20
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4e281e3
Vapor 4 support
madsodgaard eb1a7a5
Remove obsolete Circle CI and codebeat config
siemensikkema 25b5b10
Add Github Actions test flow
siemensikkema acfe7db
Update LICENSE and README (partially)
siemensikkema 5abb791
Remove deprecated LinuxMain.swift
siemensikkema c8911ff
Minor style and typo fixes
siemensikkema 50656c2
Update README
madsodgaard 48d4b71
Fix nits
madsodgaard d201463
Remove .swiftpm
madsodgaard File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 @@ | ||
| name: test | ||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - master | ||
| jobs: | ||
| linux: | ||
| runs-on: ubuntu-latest | ||
| container: swift:5.3-focal | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v2 | ||
| - name: Run tests with Thread Sanitizer | ||
| run: swift test --enable-test-discovery --sanitize=thread | ||
| macOS: | ||
| runs-on: macos-latest | ||
| steps: | ||
| - name: Select latest available Xcode | ||
| uses: maxim-lobanov/setup-xcode@v1 | ||
| with: | ||
| xcode-version: latest | ||
| - name: Check out code | ||
| uses: actions/checkout@v2 | ||
| - name: Run tests with Thread Sanitizer | ||
| run: swift test --enable-test-discovery --sanitize=thread |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -7,4 +7,5 @@ Config/secrets/ | |
| .DS_Store | ||
| .swift-version | ||
| CMakeLists.txt | ||
| Package.resolved | ||
| Package.resolved | ||
| .swiftpm | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,24 +1,30 @@ | ||
| // swift-tools-version:4.2 | ||
| // swift-tools-version:5.3 | ||
| import PackageDescription | ||
|
|
||
| let package = Package( | ||
| name: "Gatekeeper", | ||
| name: "gatekeeper", | ||
| platforms: [ | ||
| .macOS(.v10_15), | ||
| ], | ||
| products: [ | ||
| .library( | ||
| name: "Gatekeeper", | ||
| targets: ["Gatekeeper"]), | ||
| ], | ||
| dependencies: [ | ||
| .package(url: "https://github.com/vapor/vapor.git", from: "3.0.0"), | ||
| .package(url: "https://github.com/vapor/vapor.git", from: "4.38.0"), | ||
| ], | ||
| targets: [ | ||
| .target( | ||
| name: "Gatekeeper", | ||
| dependencies: [ | ||
| "Vapor" | ||
| .product(name: "Vapor", package: "vapor") | ||
| ]), | ||
| .testTarget( | ||
| name: "GatekeeperTests", | ||
| dependencies: ["Gatekeeper"]), | ||
| dependencies: [ | ||
| "Gatekeeper", | ||
| .product(name: "XCTVapor", package: "vapor") | ||
| ]), | ||
| ] | ||
| ) |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.