Skip to content

Merge pull request #4 from joshiayush/update-readme -- Updated `READM… #102

Merge pull request #4 from joshiayush/update-readme -- Updated `READM…

Merge pull request #4 from joshiayush/update-readme -- Updated `READM… #102

Workflow file for this run

name: Pytest
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
run: pytest tools/tests/ -vv