Skip to content

Update requirements.txt #14

Update requirements.txt

Update requirements.txt #14

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2.3.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v2.3.1
- name: Install package
run: |
python -m pip install --upgrade pip
bash build_stringgen.sh
pip install pytest
- name: Run tests
run: |
pytest