Skip to content

Commit

Permalink
Merge pull request #5 from Techeer-Hogwarts/SCRUM-152--actions
Browse files Browse the repository at this point in the history
test: github actions
  • Loading branch information
printSANO authored Oct 27, 2024
2 parents ec970d2 + 9e24d77 commit a4dd424
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
branches:
- main # 메인 브렌치에 브랜치 머지 시 자동으로 실행
pull_request:
branches:
- '**' # 모든 브랜치에 PR 올릴 때 실행

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: '1.23'
run: go version
- name: Show build number
run: echo "Build Number: ${{ github.run_number }}"
- name: Show pull request number
if: ${{ github.event_name == 'pull_request' }}
run: echo "PR Number: ${{ github.event.pull_request.number }}"

0 comments on commit a4dd424

Please sign in to comment.