๐ :: [#282] ๋ค๋ก๊ฐ๊ธฐ ์์ , VC ํธ์ถ ์ค๋ฅ #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GOMS CI | |
on: | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: swift-actions/setup-swift@v1 | |
with: | |
xcode-version: 16.0 | |
- name: Build | |
run: swift build | |
# - name: Run tests | |
# run: swift test | |
- name: Success Discord Notification | |
uses: sarisia/actions-status-discord@v1 | |
if: ${{ success() }} | |
with: | |
title: CI ์ฑ๊ณต! | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
status: ${{ job.status }} | |
image: ${{ secrets.CI_SUCCESS_IMAGE }} | |
description: CI๋ฅผ ์ฑ๊ณตํ์ต๋๋ค. | |
color: 00FF00 | |
username: CI Bot | |
url: https://github.com/team-haribo/GOMS-iOS-V2 | |
- name: Failed Discord Notification | |
uses: sarisia/actions-status-discord@v1 | |
if: ${{ failure() }} | |
with: | |
title: CI ์คํจ! | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
status: ${{ job.status }} | |
image: ${{ secrets.CI_FAIL_IMAGE }} | |
description: CI๋ฅผ ์คํจํ์ต๋๋ค. | |
color: FF0000 | |
username: CI Bot | |
url: https://github.com/team-haribo/GOMS-iOS-V2 |