Skip to content

Commit

Permalink
Adicionado CI ao projeto
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefelipemsc committed Jul 28, 2024
1 parent 5233f6e commit 6cf57b2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Copia os arquivos do repositório
uses: actions/checkout@v3

- name: Instalar o Python
uses: actions/setup-python@v5
with:
python-version: '3.12'


- name: Instalar Poetry
run: pipx install poetry

- name: Instalar dependências
run: poetry install

- name: Executar os testes
run: poetry run task test

0 comments on commit 6cf57b2

Please sign in to comment.