We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d77426 commit 625eff8Copy full SHA for 625eff8
1 file changed
.github/workflows/backend-ci.yml
@@ -30,7 +30,6 @@ jobs:
30
run: |
31
cd server
32
python -m pip install --upgrade pip
33
- pip install -r requirements.txt
34
pip install flake8 black
35
- name: Run flake8 (Linting)
36
@@ -48,12 +47,24 @@ jobs:
48
47
steps:
49
- name: Checkout repository
50
uses: actions/checkout@v3
+
51
+ - name: Set up Python
52
+ uses: actions/setup-python@v4
53
+ with:
54
+ python-version: "3.10"
55
56
+ - name: Install dependencies
57
+ run: |
58
+ cd server
59
+ python -m pip install --upgrade pip
60
+ pip install -r requirements.txt
61
62
- name: Create .env file in CI
63
64
65
echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env"
66
echo "SUPABASE_URL=${{ secrets.SUPABASE_KEY }} >> .env"
67
68
- name: Run Tests
69
70
0 commit comments