diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 00000000..c309bc5e --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,28 @@ +name: Run Pytest on Pull Request + +on: + pull_request: + branches: + - main # Change this to your default branch if it's not 'main' + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.12' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Run Pytest + run: | + python -m pytest -v tests/ diff --git a/requirements.txt b/requirements.txt index a024680a..bb549d83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,4 @@ scikit-learn==1.5.2 deap==1.4.1 joblib==1.4.2 requests==2.32.3 +pytest==8.3.3