Added tests GitHub Actions

This commit is contained in:
Anna “CyberTailor” 2023-05-13 12:11:17 +05:00
parent 88c1fadd5a
commit 8871479c85
No known key found for this signature in database
GPG Key ID: E7B76EDC50864BB1
1 changed files with 16 additions and 0 deletions

16
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,16 @@
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: pip install .[test]
- name: Test with pytest
run: pytest -vv --color=yes