10000 feat: write_mode · MateusKasuya/firebird_to_postgres@3d2a781 · GitHub
[go: up one dir, main page]

Skip to content

feat: write_mode

feat: write_mode #17

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