Mlflow+EarlyStopping (#75) #209
Workflow file for this run
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: Run python tests | |
on: [push, pull_request] | |
jobs: | |
build-and-launch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.8" | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry install | |
poetry add --group dev poethepoet | |
- name: Run tests | |
working-directory: ./AIAgent | |
run: | | |
poetry run pytest tests -sv |