Bump unidecode from 1.3.7 to 1.3.8 #2586
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Django Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: nanasess/setup-chromedriver@v2 | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11.2 | |
run: pipx install poetry | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11.2 | |
cache: 'poetry' | |
- name: Install dependencies | |
run: poetry install | |
- name: Collect static files | |
run: poetry run python manage.py collectstatic --noinput | |
- name: Run tests | |
run: poetry run xvfb-run --auto-servernum python manage.py test -v 3 --failfast |