You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: add scripts to validate that public API has not changed (#152)
* ci: add scripts to validate that public API has not changed
* ci: install sourcekitten
* ci: setup ssh-agent
* ci: add more info on rememdy
* ci: add documentation + refactor
* ci: add support for ConfidenceProvider in API diff
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+14-4
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
##Contributing
1
+
# Contributing
2
2
3
3
Open the project in Xcode and build by Product -> Build.
4
4
5
-
###Linting code
5
+
## Linting code
6
6
7
7
Code is automatically linted during a build in Xcode. If you need to manually lint:
8
8
@@ -11,15 +11,25 @@ brew install swiftlint
11
11
swiftlint
12
12
```
13
13
14
-
###Formatting code
14
+
## Formatting code
15
15
16
16
You can automatically format your code using:
17
17
18
18
```shell
19
19
./scripts/swift-format
20
20
```
21
21
22
-
### Running tests
22
+
## API diffs
23
+
We run a script to make sure that we don't make changes to the public API without intending to.
24
+
The diff script and the script to generate a new "golden api file" uses a tool called [SourceKitten](https://github.com/jpsim/SourceKitten) which can be installed using homebrew (`brew install sourcekitten`).
25
+
26
+
### The expected workflow is:
27
+
* Write code (that may change the public API).
28
+
* Optionally run `./scripts/api_diff.sh` to detect the api change.
29
+
* Run `./scripts/generate_public_api.sh` -- this will update the file in `./api`.
30
+
* Commit both code and the updated API file in the same commit.
31
+
32
+
## Running tests
23
33
24
34
IT tests require a Confidence client token to reach remote servers. The token can be created on the Confidence portal.
25
35
The Confidence organization used for IT tests is named `confidence-test` (you may need to request access).
0 commit comments