Skip to content

add x.deploy.port to readme #48

add x.deploy.port to readme

add x.deploy.port to readme #48

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install lint tools
run: |
pip install poetry
poetry install --only lint
- name: Lint
run: script/lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install poetry
poetry install --with test
- name: Test
run: poetry run pytest --cov=flow_deploy --cov-report=term-missing