Skip to content

Fix crash for non-ASCII characters (#5) #56

Fix crash for non-ASCII characters (#5)

Fix crash for non-ASCII characters (#5) #56

Workflow file for this run

name: Unit-Tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: cache poetry install
uses: actions/cache@v2
with:
path: ~/.local
key: poetry-1.4.2-0
- uses: snok/install-poetry@v1
with:
version: 1.4.2
virtualenvs-create: true
virtualenvs-in-project: true
- name: cache deps
id: cache-deps
uses: actions/cache@v2
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
- run: poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: poetry install --no-interaction
- run: poetry run pytest