Skip to content

Commit

Permalink
[FEAT] Github Actions를 이용한 SwiftLint on CI시스템 구축(#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
noah0316 committed Jan 11, 2022
1 parent 219a1b6 commit 8a2da5e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
pull_request:
branches: [develop]
jobs:
build:
runs-on: macOS-latest
name: "Run Danger"
steps:
- uses: actions/checkout@v1
- name: Install Ruby Dependencies
run: bundle install --path vendor/bundle
- name: Run Danger
run: bundle exec danger
env:
DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }}

0 comments on commit 8a2da5e

Please sign in to comment.