Skip to content

Commit

Permalink
create CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarvid committed Jul 5, 2024
1 parent 62598e6 commit b917d84
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,35 @@
name: 'Continuous Integration'
name: 'Continous Integration'

on:
...
push:
branches:
- 'feature/**'
- 'bug/**'
- 'develop'
- 'release/**'
- 'hotfix/**'
- 'main'
pull_request:
branches: [ develop, main ]

jobs:
...
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install
- name: Run model tests
run: make model-test

- name: Run API tests
run: make api-test

0 comments on commit b917d84

Please sign in to comment.