Skip to content

Feature/ci cd

Feature/ci cd #15

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:
- uses: actions/checkout@v4
- name: Check directory
run: |
ls
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10.8'
- name: Python version
run: |
python --version
- name: Install poetry and virtualenv
run: |
pip install virtualenv
pip install poetry
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --with test
- name: start virtualenv manually
run: |
source .venv/bin/activate
- name: Run tests
run: |
make model-test