๐Ÿ“’ [ TIL ] 2022.07.27_70์ผ์ฐจ # ์ตœ์ข… ํ”„๋กœ์ ํŠธ (12)

๋ฌธ๋ช…์ฃผยท2022๋…„ 7์›” 29์ผ
1
post-thumbnail

[ 2022-07-27 (์ˆ˜) ์˜ค๋Š˜์˜ TIL ]

[ Today Project ]

drf ๋ฐฑ์—”๋“œ๊ฐœ๋ฐœ + ํ”„๋ก ํŠธ๊ฐœ๋ฐœ
: ์ด๋ฒˆ ํ”„๋กœ์ ํŠธ๋Š” ํŒ€ํ”„๋กœ์ ํŠธ๋กœ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค.

[ Today Learn ]

  • ๊นƒํ—ˆ๋ธŒ์•ก์…˜์Šค ์ •์˜
  • ๊นƒํ—ˆ๋ธŒ ์•ก์…˜ ์‚ดํŽด๋ณด๊ธฐ
  • ์žฅ๊ณ  ํ…Œ์ŠคํŠธ ๊นƒํ—ˆ๋ธŒ ์•ก์…˜์œผ๋กœ ์ž๋™ํ™”ํ•˜๊ธฐ

โœ๏ธ ๋‚ด๊ฐ€ ๋ฐฐ์šด๊ฒƒ, ์–ป์€๊ฒƒ

โ“ GitHub Actions ๋ž€?

GitHub Actions๋Š” ์ฝ”๋“œ ์ €์žฅ์†Œ(repository)๋กœ ์œ ๋ช…ํ•œ GitHub์—์„œ ์ œ๊ณตํ•˜๋Š” CI(Continuous Integration, ์ง€์† ํ†ตํ•ฉ)์™€ CD(Continuous Deployment, ์ง€์† ๋ฐฐํฌ)๋ฅผ ์œ„ํ•œ ๋น„๊ต์  ์ตœ๊ทผ์— ์ถ”๊ฐ€๋œ ์„œ๋น„์Šค์ด๋‹ค. GitHub Actions๋ฅผ ์‚ฌ์šฉํ•˜๋ฉด ์ž๋™์œผ๋กœ ์ฝ”๋“œ ์ €์žฅ์†Œ์—์„œ ์–ด๋–ค ์ด๋ฒคํŠธ(event)๊ฐ€ ๋ฐœ์ƒํ–ˆ์„ ๋•Œ ํŠน์ • ์ž‘์—…์ด ์ผ์–ด๋‚˜๊ฒŒ ํ•˜๊ฑฐ๋‚˜ ์ฃผ๊ธฐ์ ์œผ๋กœ ์–ด๋–ค ์ž‘์—…๋“ค์„ ๋ฐ˜๋ณตํ•ด์„œ ์‹คํ–‰์‹œํ‚ฌ ์ˆ˜๋„ ์žˆ๋‹ค.

โ“ Jobs ๋ž€?

GitHub Actions์—์„œ ์ž‘์—…(Job)์ด๋ž€ ๋…๋ฆฝ๋œ ๊ฐ€์ƒ ๋จธ์‹ (machine) ๋˜๋Š” ์ปจํ…Œ์ด๋„ˆ(container)์—์„œ ๋Œ์•„๊ฐ€๋Š” ํ•˜๋‚˜์˜ ์ฒ˜๋ฆฌ ๋‹จ์œ„๋ฅผ ์˜๋ฏธํ•œ๋‹ค.

๐Ÿงฉ ์ ์šฉ ์˜ˆ์‹œ

name: Django Test

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: ["3.8", "3.9", "3.10"]

    steps:
      - uses: actions/checkout@v3
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v4
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install flake8
          pip install -r requirements.txt
      - name: Lint with flake8
        run: |
          # stop the build if there are Python syntax errors or undefined names
          flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
          # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
          flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
      - name: Run Tests
        run: |
          python manage.py test
profile
ํ•˜๋ฃจ ํ•œ๊ฑธ์Œ์”ฉ ๊พธ์ค€ํžˆ ๋‚˜์•„๊ฐ€๋Š” ๊ฐœ๋ฐœ์ž๐Ÿ™†โ€โ™€๏ธ https://github.com/Moonmooj

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด