Skip to content

Update food.py

Update food.py #223

Workflow file for this run

---
name: Checks
on: [push]
jobs:
frontend-test:
name: Frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
repository: utmgdsc/CarbonTrack
- name: npm install
run: |
cd frontend
npm install
- name: Check linting
run: |
cd frontend
npm run lint
backend-test:
name: Backend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: pip install
run: |
cd backend
pip install -r requirements.txt
- name: Check linting
run: |
cd backend
ruff .