From 8871479c856b15d33d6f2580e5044cb2ab7f08b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna=20=E2=80=9CCyberTailor=E2=80=9D?= Date: Sat, 13 May 2023 12:11:17 +0500 Subject: [PATCH] Added tests GitHub Actions --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9549602 --- /dev/null +++ b/.github/workflows/test.yml @@ -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