From b065236a04384e5e2b76c9b5568f612eb2dea020 Mon Sep 17 00:00:00 2001 From: Karlitos911 <144455223+Karlitos911@users.noreply.github.com> Date: Mon, 6 Oct 2025 15:50:08 -0300 Subject: [PATCH] Create python-tests.yml --- .github/workflows/python-tests.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/python-tests.yml diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml new file mode 100644 index 0000000..fa75a27 --- /dev/null +++ b/.github/workflows/python-tests.yml @@ -0,0 +1,18 @@ +name: python-tests +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run tests + run: pytest -q