Skip to content
This repository was archived by the owner on Jan 11, 2024. It is now read-only.

Commit 9bf204e

Browse files
committed
ci: disable spell check until proper support
1 parent dd86f17 commit 9bf204e

File tree

4 files changed

+15
-37
lines changed

4 files changed

+15
-37
lines changed

.github/config/custom-words.txt

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/config/spellcheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ matrix:
55
d: en_US
66
dictionary:
77
encoding: utf-8
8-
wordlists:
9-
- .github/config/custom-words.txt
10-
output: .build/dictionary/custom-words.dic
8+
# wordlists:
9+
# - .github/config/custom-words.txt
10+
# output: .build/dictionary/custom-words.dic
1111
pipeline:
1212
- pyspelling.filters.markdown:
1313
- pyspelling.filters.html:

.github/workflows/main.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ jobs:
3333
contents: read
3434
security-events: write
3535

36-
spell-check:
37-
name: Run spell check
38-
runs-on: ubuntu-latest
39-
steps:
40-
- name: Checkout repository
41-
uses: actions/checkout@v3
36+
# spell-check:
37+
# name: Run spell check
38+
# runs-on: ubuntu-latest
39+
# steps:
40+
# - name: Checkout repository
41+
# uses: actions/checkout@v3
4242

43-
- name: Spellcheck Action
44-
uses: rojopolis/[email protected]
45-
with:
46-
config_path: .github/config/spellcheck.yml
43+
# - name: Spellcheck Action
44+
# uses: rojopolis/[email protected]
45+
# with:
46+
# config_path: .github/config/spellcheck.yml
4747

4848
swift-package-test:
4949
name: Run Swift Package Tests

Sources/DynamicCodableKit/DynamicCodableKit.docc/DynamicCodableKit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The data types, protocols, and property wrappers defined by `DynamicCodableKit`
2727
pod 'DynamicCodableKit'
2828
```
2929

30-
Optionally, you can also use the pre built XCFramework from the GitHub releases page by replacing `{version}` with the required version you want to use:
30+
Optionally, you can also use the pre-built XCFramework from the GitHub releases page by replacing `{version}` with the required version you want to use:
3131

3232
```ruby
3333
pod 'DynamicCodableKit', :http => 'https://github.com/SwiftyLab/DynamicCodableKit/releases/download/v{version}/DynamicCodableKit-{version}.xcframework.zip'
@@ -51,7 +51,7 @@ Once you have your Swift package set up, adding `DynamicCodableKit` as a depende
5151
.package(url: "https://github.com/SwiftyLab/DynamicCodableKit.git", from: "1.0.0"),
5252
```
5353

54-
Optionally, you can also use the pre built XCFramework from the GitHub releases page by replacing `{version}` and `{checksum}` with the required version and checksum of artifact you want to use:
54+
Optionally, you can also use the pre-built XCFramework from the GitHub releases page by replacing `{version}` and `{checksum}` with the required version and checksum of artifact you want to use:
5555

5656
```swift
5757
.binaryTarget(name: "DynamicCodableKit", url: "https://github.com/SwiftyLab/DynamicCodableKit/releases/download/v{version}/DynamicCodableKit-{version}.xcframework.zip", checksum: "{checksum}"),

0 commit comments

Comments
 (0)