|
|
@ -16,6 +16,8 @@
|
|
|
|
- [Scala - SBT](#scala---sbt)
|
|
|
|
- [Scala - SBT](#scala---sbt)
|
|
|
|
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
|
|
|
|
- [Swift, Objective-C - Carthage](#swift-objective-c---carthage)
|
|
|
|
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
|
|
|
|
- [Swift, Objective-C - CocoaPods](#swift-objective-c---cocoapods)
|
|
|
|
|
|
|
|
- [Swift - Swift Package Manager](#swift---swift-package-manager)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## C# - NuGet
|
|
|
|
## C# - NuGet
|
|
|
|
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
|
|
|
|
Using [NuGet lock files](https://docs.microsoft.com/nuget/consume-packages/package-references-in-project-files#locking-dependencies):
|
|
|
@ -373,3 +375,15 @@ When dependencies are installed later in the workflow, we must specify the same
|
|
|
|
restore-keys: |
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pods-
|
|
|
|
${{ runner.os }}-pods-
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Swift - Swift Package Manager
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
path: .build
|
|
|
|
|
|
|
|
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
|
|
|
|
|
|
|
|
restore-keys: |
|
|
|
|
|
|
|
|
${{ runner.os }}-spm-
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|