Skip to content

Add tests

Add tests #1

Workflow file for this run

name: Run tests
on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
jobs:
tox:
name: "tox"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: 'x64'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-test.txt
- name: Run tests
run: tox