ci: fix pip build dependencies in aeo_test.yml workflow #6
This file contains hidden or 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: AEO GEO MCP Test Suite | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Install Build & Test Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install setuptools wheel pytest | |
| pip install -e . | |
| - name: Run Test Suite | |
| run: python -m pytest tests/test_aeo_geo.py |