From ec71e82417a81d12a70507b20e7fee0a908b6a6d Mon Sep 17 00:00:00 2001 From: Samuel Alino <145914532+SamAlino@users.noreply.github.com> Date: Sat, 18 Oct 2025 18:32:50 +0700 Subject: [PATCH] Add CI Pipeline Workflow --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000000..1461dd46ee --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name : CI Pipeline + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: checkout code + uses: actions/checkout@v4 + + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: 3.10 + + - name: Install dependencies + uses: pip install -r requirements.txt + + - name: Run tests + uses: pytest