Skip to content
This repository was archived by the owner on Jun 2, 2026. It is now read-only.

pip(deps-dev): update isort requirement from ^5.9.3 to ^6.0.1 in /backend #234

pip(deps-dev): update isort requirement from ^5.9.3 to ^6.0.1 in /backend

pip(deps-dev): update isort requirement from ^5.9.3 to ^6.0.1 in /backend #234

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main, mvp ]
paths:
- 'backend/**'
- '.github/workflows/build.yml'
- 'requirements*.txt'
pull_request:
branches: [ main, mvp ]
paths:
- 'backend/**'
- '.github/workflows/build.yml'
- 'requirements*.txt'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
cd backend
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests and linting
run: |
cd backend
bash scripts/format_and_lint.sh
- name: Store coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: backend/coverage.xml
sonarcloud:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download coverage report
uses: actions/download-artifact@v4
with:
name: coverage-report
path: backend
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}