10000 Merge branch 'main' into mgp · MateusKasuya/firebird_to_postgres@ec3f60c · GitHub
[go: up one dir, main page]

Skip to content

Merge branch 'main' into mgp #33

Merge branch 'main' into mgp

Merge branch 'main' into mgp #33

Workflow file for this run

name: ci
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Baixar o repositório
uses: actions/checkout@v4
- name: Instalar o Python
uses: actions/setup-python@v5
with:
python-version: 3.12.8
- name: Instalar o Poetry via pip
run: pip install poetry
- name: Instalar dependências com o Poetry
run: poetry install --no-root
- name: Rodar minha rotina de testes com o Poetry
run: poetry run pytest tests -v
0