Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit d4c7479

Browse files
committed
Add pr check workflow
1 parent 7cf5f9f commit d4c7479

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/pr.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: PR check
2+
3+
on: pull_request
4+
5+
jobs:
6+
danger:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Danger(SwiftLint)
12+
uses: docker://ghcr.io/danger/danger-swift-with-swiftlint:3.8.0
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)