From 8a2da5e0f8fff0bb3a65932fdd90dd7bf0bec9e5 Mon Sep 17 00:00:00 2001 From: Noah Date: Tue, 11 Jan 2022 18:55:27 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]=20Github=20Actions=EB=A5=BC=20=EC=9D=B4?= =?UTF-8?q?=EC=9A=A9=ED=95=9C=20SwiftLint=20on=20CI=EC=8B=9C=EC=8A=A4?= =?UTF-8?q?=ED=85=9C=20=EA=B5=AC=EC=B6=95(#12)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 00000000..4d962afe --- /dev/null +++ b/.github/workflows/action.yml @@ -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 }}