add eq operator for Function #11
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: Run Evals (Examples) | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| run-evals: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install uv | |
| run: pip install uv | |
| - name: Create virtual environment | |
| run: uv venv venv | |
| - name: Install vowel | |
| run: | | |
| source venv/bin/activate | |
| uv pip install -e . | |
| - name: Run vowel eval check | |
| run: | | |
| source venv/bin/activate | |
| vowel run -d examples/evals --ci --cov 100 --ignore-duration |