Skip to content

Feature/ci cd

Feature/ci cd #12

Workflow file for this run

name: 'Continuous Integration'
on:
pull_request:
branches:
- develop
paths:
- 'challenge/**'
- 'scripts/**'
- '.github/**'
- 'pyproject.toml'
- 'poetry.lock'
jobs:
my_first_job:
runs-on: ubuntu-latest # put this in an environment?
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.8'
- name: Python version
run: |
python --version
- uses: actions/checkout@v4
- name: Install poetry
run: |
pip install poetry
- name: Check directory
run: |
ls
- name: Install dependencies
run: |
poetry install
- name: Start poetry shell
run: |
poetry shell
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
make model-test