Skip to content

Remove name randomization, and add name validations #35

Remove name randomization, and add name validations

Remove name randomization, and add name validations #35

Workflow file for this run

name: CI Build Flo-AI
on:
pull_request:
branches:
- develop
workflow_dispatch: # Allows manual triggering from the GitHub Actions UI
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup virtual env
run: |
pip install --upgrade pip
python3.11 -m venv env
source env/bin/activate
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3.11
- name: Poetry lock
run: poetry lock
- name: Install dependencies
run: poetry install
- name: Install behave
run: pip install behave==1.2.6
- name: Run tests
run: behave
- name: Run build
run: poetry build