Skip to content

No newline before CLI input #540

No newline before CLI input

No newline before CLI input #540

Workflow file for this run

name: PyTest
on:
pull_request:
branches:
- main
permissions: read-all
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install requests
- name: Test with pytest
run: PYTHONPATH="${PYTHONPATH}:${pwd}" pytest