8000 fix · MateusKasuya/firebird_to_postgres@210ef6e · GitHub
[go: up one dir, main page]

Skip to content

fix

fix #21

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