From 0afcff85416679ebdc5f82d577892d8ac2e4e684 Mon Sep 17 00:00:00 2001 From: Santiago Suarez Date: Fri, 19 Jul 2024 10:05:12 -0300 Subject: [PATCH] First ci update --- .github/workflows/ci.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec2cb7a..c360017 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,22 @@ name: 'Continuous Integration' on: - ... + pull_request: + branches: [ develop ] jobs: - ... \ No newline at end of file + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.8' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run tests + run: | + make model-test \ No newline at end of file