Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Add github actions

Add github actions #2

Workflow file for this run

on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: pip install -r backend/requirements.txt
- name: Lint code
run: ruff check backend