Skip to content

[#48]feat: input error #17

[#48]feat: input error

[#48]feat: input error #17

name: Pull Request build
on:
pull_request:
branches: [ "develop" ]
permissions:
contents: read
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=\"$HOME/.local/bin:\$PATH\"" >> $GITHUB_ENV
- name: Install dependencies with Poetry
run: poetry install --no-interaction --no-ansi
- name: pytest
run: poetry run pytest