From 4df8b31881620185500a60c705c62be96161ba1c Mon Sep 17 00:00:00 2001 From: cangirolave <41312200+cangirolave@users.noreply.github.com> Date: Mon, 27 Oct 2025 21:05:14 +0300 Subject: [PATCH] Create pytest.yml --- .github/workflows/pytest.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pytest.yml diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..e17a051 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,26 @@ +name: Pytest + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.13' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest + - name: Test with pytest + run: | + pytest