Skip to content

profile画面のバグ修正 #27

profile画面のバグ修正

profile画面のバグ修正 #27

Workflow file for this run

name: ruff
on:
push:
branches-ignore:
- main
workflow_dispatch:
jobs:
lint-with-ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Lint with Ruff
run: |
pip install ruff
ruff check backend/api --output-format=github