Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Bump word-wrap from 1.2.3 to 1.2.4 in /frontend #114

Bump word-wrap from 1.2.3 to 1.2.4 in /frontend

Bump word-wrap from 1.2.3 to 1.2.4 in /frontend #114

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pipenv
pipenv install --system
- name: Run tests
run: |
python -m unittest discover -s tests -p "*.py"