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

Commit

Permalink
Add Github actions
Browse files Browse the repository at this point in the history
Closes #8
  • Loading branch information
msathieu committed Feb 23, 2024
1 parent 8a45131 commit 9f84dff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Backend
on: [push]
jobs:
lint:
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: pip install -r backend/requirements.txt
- name: Lint code
run: ruff check backend

0 comments on commit 9f84dff

Please sign in to comment.