Feature/ci cd #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |