1 parent fd5db73 commit 90a4605Copy full SHA for 90a4605
1 file changed
.github/workflows/ci.yml
@@ -1,4 +1,3 @@
1
-
2
name: CI/CD Pipeline
3
4
on:
@@ -19,10 +18,12 @@ jobs:
19
18
- name: Configurar Python
20
uses: actions/setup-python@v3
21
with:
22
- python-version: 3.9
+ python-version: "3.9"
23
24
- name: Instalar Dependências
25
- run: pip install -r requirements.txt
+ run: |
+ python -m pip install --upgrade pip
26
+ pip install -r requirements.txt
27
28
- name: Rodar Testes
29
run: pytest tests/
@@ -32,5 +33,6 @@ jobs:
32
33
runs-on: ubuntu-latest
34
steps:
35
- name: Deploy para Produção
- run: echo 'Deploy realizado com sucesso!'
36
+ run: echo "Deploy realizado com sucesso!"
37
+
38
0 commit comments