From 4dc2a81c0d8a06a9d9afcd93579f69ce7f2b92e8 Mon Sep 17 00:00:00 2001 From: anna shalahina Date: Fri, 17 Oct 2025 23:45:58 +0300 Subject: [PATCH] add .github/workflows/ --- .github/workflows/tests.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..d4a7ce2 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,21 @@ +name: Tests + +on: push +jobs: + built: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest + - name: Tests with pytest + run: | + python -m pytest +