From 991ed8141b26c40d100a661463d8aa3cd8abafc9 Mon Sep 17 00:00:00 2001 From: Viginum-DataScientist-6 <210390336+Viginum-DataScientist-6@users.noreply.github.com> Date: Wed, 30 Jul 2025 08:28:52 +0000 Subject: [PATCH] style: minor formatting and fix workflow name --- .github/workflows/test.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d7b0c93..990b14c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Publish Python distribution to PyPI and TestPyPI +name: Run tests on: push @@ -11,17 +11,16 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false - + - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - + - name: Install dependencies run: | pip install poetry poetry install --with dev - + - name: Run tests - run: - poetry run pytest + run: poetry run pytest