Skip to content

Add test to make sure that no \n input can be printed #22

Add test to make sure that no \n input can be printed

Add test to make sure that no \n input can be printed #22

Workflow file for this run

name: Test
on:
push:
branches:
- master
- 'dev/**'
tags:
- '*'
pull_request:
branches:
- master
permissions:
contents: read
env:
PYTHON_VERSION: 3.9
jobs:
tests:
name: Core Test
if: "!contains(github.event.head_commit.message, '[CI SKIP]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
python -m pip install --upgrade --requirement requirements-dev.txt
- name: Run tests
run: |
pytest