Skip to content

Commit

Permalink
Create CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
rgallardone committed Jun 27, 2024
1 parent 8c68ab9 commit 5d49361
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 'Continuous Integration'

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'

- name: Install dependencies
run: |
pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt
- name: Run model tests
run: make model-test

- name: Run API tests
run: make api-test
7 changes: 0 additions & 7 deletions workflows/cd.yml

This file was deleted.

7 changes: 0 additions & 7 deletions workflows/ci.yml

This file was deleted.

0 comments on commit 5d49361

Please sign in to comment.