Skip to content

Commit 90a4605

Browse files
authored
Update ci.yml
1 parent fd5db73 commit 90a4605

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: CI/CD Pipeline
32

43
on:
@@ -19,10 +18,12 @@ jobs:
1918
- name: Configurar Python
2019
uses: actions/setup-python@v3
2120
with:
22-
python-version: 3.9
21+
python-version: "3.9"
2322

2423
- name: Instalar Dependências
25-
run: pip install -r requirements.txt
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
2627
2728
- name: Rodar Testes
2829
run: pytest tests/
@@ -32,5 +33,6 @@ jobs:
3233
runs-on: ubuntu-latest
3334
steps:
3435
- name: Deploy para Produção
35-
run: echo 'Deploy realizado com sucesso!'
36+
run: echo "Deploy realizado com sucesso!"
37+
3638

0 commit comments

Comments
 (0)