Skip to content

Add movie retrieval endpoints and response schemas #7

Add movie retrieval endpoints and response schemas

Add movie retrieval endpoints and response schemas #7

Workflow file for this run

name: CI Pipeline
on:
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run flake8
run: |
poetry run flake8 src
- name: Run tests
run: |
poetry run pytest