Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/app-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ jobs:
psql -d postgres -c "ALTER USER ${{ env.POSTGRES_USERNAME }} WITH PASSWORD '${{ env.POSTGRES_PASSWORD }}'"
psql -d postgres -c 'CREATE EXTENSION vector'

# - name: (Windows) Start postgreSQL
# if: matrix.os == 'windows-latest'
# uses: ikalnytskyi/action-setup-postgres@v6
# with:
# username: ${{ env.POSTGRES_USERNAME }}
# password: ${{ env.POSTGRES_PASSWORD }}
# database: ${{ env.POSTGRES_DATABASE }}

- name: Install pgvector
if: matrix.os == 'windows-latest'
shell: cmd
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/evaluate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,15 @@ jobs:
if: ${{ success() }}
run: |
echo "📊 Evaluation Results" >> $GITHUB_STEP_SUMMARY
python -m evaltools summary evals/results --output=markdown >> $GITHUB_STEP_SUMMARY
python -m evaltools summary evals/results --output=markdown >> eval-results.md
cat eval-results.md >> $GITHUB_STEP_SUMMARY

- name: Comment on pull request
uses: actions/github-script@v7
with:
script: |
const fs = require('fs');
const summaryPath = process.env.GITHUB_STEP_SUMMARY;
const summaryPath = "eval-results.md";
const summary = fs.readFileSync(summaryPath, 'utf8');
github.rest.issues.createComment({
issue_number: context.issue.number,
Expand Down