We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f65bf41 commit 5fe2066Copy full SHA for 5fe2066
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: chatbot
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout do código
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Instalar Miniconda
17
+ uses: conda-incubator/setup-miniconda@v3
18
+ with:
19
+ activate-environment: chatbot
20
+ environment-file: environment.yml
21
+ python-version: 3.13
22
23
+ - name: Instalar dependências pip
24
+ run: pip install -r src/requirements.txt
25
26
+ - name: Rodar testes (exemplo)
27
+ run: pytest
28
+ continue-on-error: true
0 commit comments