Skip to content

Merge branch 'main' of https://github.com/samadpls/Querypls into beta #8

Merge branch 'main' of https://github.com/samadpls/Querypls into beta

Merge branch 'main' of https://github.com/samadpls/Querypls into beta #8

Workflow file for this run

name: Run Unittests
on: [push, pull_request]
jobs:
test:
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.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run unittests
run: |
python3 -m unittest