Skip to content

Commit 790f511

Browse files
committed
📝 add readme
1 parent cf7e312 commit 790f511

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

readme.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# swift-api-diff
2+
3+
This generates per-PR diff reports in the public API of a swift module. It's based on the [Swift-NIO team's api breakage script](https://github.com/apple/swift-nio/blob/master/scripts/check_no_api_breakages.sh)
4+
5+
## [Usage example](https://github.com/ltetzlaff/swift-api-diff-example/blob/master/.github/workflows/swift-api.yml)
6+
7+
```yml
8+
name: SwiftAPIBreakage
9+
10+
on:
11+
pull_request:
12+
types: [opened, synchronize]
13+
14+
jobs:
15+
buildAndCheckAPIBreakage:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
with:
20+
ref: master
21+
fetch-depth: 0
22+
- uses: ltetzlaff/swift-api-diff@master
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
```
26+
27+
### Example with a change
28+
29+
https://github.com/ltetzlaff/swift-api-diff-example/pull/4
30+
31+
### Example without a change
32+
33+
https://github.com/ltetzlaff/swift-api-diff-example/pull/3

0 commit comments

Comments
 (0)