Updated pyproject.toml, removed unused input files #7
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: Model Evaluation Workflow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
eval_python: | |
name: Model Evaluations | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
id: setup-python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- run: pip install --upgrade pip | |
- run: pip install setuptools | |
- run: pip install pandas | |
- run: pip install gitpython | |
- name: Create report file | |
run: cd Evaluation/; python3 evaluate.py | |
- name: Commit report | |
run: | | |
git config --global user.name 'Automated Model Evaluator' | |
git config --global user.email '[email protected]' | |
git add Evaluations/* | |
git commit -m "feat: add automated model evaluations" | |
git push |