Skip to content

Commit f2c059b

Browse files
committed
Added SPI documentation;
Updated Actions
1 parent f410460 commit f2c059b

File tree

3 files changed

+10
-34
lines changed

3 files changed

+10
-34
lines changed

.github/workflows/swift.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout Source
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Build (macOS)
2121
run: swift build -v
@@ -35,12 +35,12 @@ jobs:
3535
build/reports/coverage.lcov
3636
3737
- name: Publish Test Results
38-
uses: EnricoMi/publish-unit-test-result-action/composite@v1
38+
uses: EnricoMi/publish-unit-test-result-action/macos@v2
3939
with:
4040
files: build/reports/junit.xml
4141

4242
- name: Publish Code Coverage
43-
uses: vebr/jest-lcov-reporter@v0.2.1
43+
uses: lifeart/jest-lcov-reporter@v0.4.0
4444
with:
4545
github-token: ${{ secrets.GITHUB_TOKEN }}
4646
lcov-file: build/reports/coverage.lcov
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout Source
54-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5555

5656
- name: Build (Ubuntu)
5757
run: swift build -v

.spi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version: 1
2+
builder:
3+
configs:
4+
- documentation_targets: [CodeQuickKit]

README.md

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,8 @@
22

33
A Swift library for simplifying some everyday tasks.
44

5-
<p>
6-
<img src="https://github.com/richardpiazza/CodeQuickKit/workflows/Swift/badge.svg?branch=main" />
7-
<img src="https://img.shields.io/badge/Swift-5.5-orange.svg" />
8-
<a href="https://twitter.com/richardpiazza">
9-
<img src="https://img.shields.io/badge/twitter-@richardpiazza-blue.svg?style=flat" alt="Twitter: @richardpiazza" />
10-
</a>
11-
</p>
12-
13-
## 💻 Installation
14-
15-
This software is distributed using [Swift Package Manager](https://swift.org/package-manager).
16-
You can add it using Xcode or by listing it as a dependency in your `Package.swift` manifest:
17-
18-
```swift
19-
let package = Package(
20-
...
21-
dependencies: [
22-
.package(url: "https://github.com/richardpiazza/CodeQuickKit", .upToNextMajor(from: "7.0.0")
23-
],
24-
...
25-
targets: [
26-
.target(
27-
name: "MyPackage",
28-
dependencies: [
29-
"CodeQuickKit"
30-
]
31-
)
32-
]
33-
)
34-
```
5+
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frichardpiazza%2FCodeQuickKit%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/richardpiazza/CodeQuickKit)
6+
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Frichardpiazza%2FCodeQuickKit%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/richardpiazza/CodeQuickKit)
357

368
## 📌 Features
379

0 commit comments

Comments
 (0)