jm_p_op

git-action 본문

코딩/github

git-action

jm_p_op 2024. 1. 19. 17:33

.github/workflow 에서 .yml로 저장한다.

name: pr_test_code
on:
  push:
      branches: [main] 
  pull_request:
      branches: [main] 
jobs:
  python-hello-world:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-python@v2
        with:
          python-version: "3.10.6"
      - run: python test.py ${{secrets.TEST}}
      - run: python test1.py

 

  • name : 폴더이름
  • on : git을 사용할때 언제 gitaction이 작동할지 정하는 공간
  • jobs : gitaction으로 어떤걸 할지에 대한 내용 작성
    • 새로운 서버(새로운 컴퓨터)에서 터미널에 어떻게 칠지에 대한 내용

pr을 보낼때마다 testcode가 작동하고 오류시 PR을 막기위해 시도를 했으며 부계정과 함께 약 200commit 작성하며 확인한듯 싶다...,

'코딩 > github' 카테고리의 다른 글

git action 보안과 문제점  (0) 2024.01.19
git-action 권한설정  (0) 2024.01.19
git 컨벤션 (vs 깃모지)  (0) 2023.06.05
git 사용법  (0) 2023.03.14
github- gitignore  (1) 2023.03.14