Skip to content

Commit 5fe2066

Browse files
committed
update
1 parent f65bf41 commit 5fe2066

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: chatbot
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
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

Comments
 (0)