From 1ba3e1b5859769c42de2ce11c3ba332ca3a6fb86 Mon Sep 17 00:00:00 2001 From: Omar-268 Date: Mon, 13 Oct 2025 13:13:35 +0000 Subject: [PATCH] Update .github/workflows/main.yaml --- .github/workflows/main.yaml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e591bbf..e363f9c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -7,9 +7,31 @@ on: branches: ["main"] jobs: + + test: + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.10' + + - name: Install dependencies + run: | + pip install pytest + + - name: Run tests + run: pytest -q + + + + + build: - + needs: test steps: - name: Checkout repository uses: actions/checkout@v4