From f663958e76d83de71333824ce0b3ccf619e75bfe Mon Sep 17 00:00:00 2001 From: Hadinull3000 Date: Mon, 28 Jul 2025 20:06:20 +0300 Subject: [PATCH] added a GitHub action to run unit tests automatically on code push --- .github/unittests.yaml/.yaml | 0 .github/unittests.yaml/unittests.yaml | 14 ++++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .github/unittests.yaml/.yaml create mode 100644 .github/unittests.yaml/unittests.yaml diff --git a/.github/unittests.yaml/.yaml b/.github/unittests.yaml/.yaml new file mode 100644 index 00000000..e69de29b diff --git a/.github/unittests.yaml/unittests.yaml b/.github/unittests.yaml/unittests.yaml new file mode 100644 index 00000000..6556f29e --- /dev/null +++ b/.github/unittests.yaml/unittests.yaml @@ -0,0 +1,14 @@ +name: Continuous Integration +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.12.0 + architecture: x64 + - name: Install dependencies + run: pip install -r requirements.txt