Skip to content

Fix: 공지 사항 목록 조회시에 display되지 않는 필드는 포함하지 않도록 수정 #45

Fix: 공지 사항 목록 조회시에 display되지 않는 필드는 포함하지 않도록 수정

Fix: 공지 사항 목록 조회시에 display되지 않는 필드는 포함하지 않도록 수정 #45

Workflow file for this run

name: Django Tests and Linting
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install uv
uv sync --group dev
- name: Check lint with ruff
run: uv run ruff check --no-fix
- name: Check code style with ruff
run: uv run ruff format --check .
- name: Run migrations
run: make migration
- name: Run tests
run: make test