Skip to content

Commit

Permalink
Merge branch 'main' into demo
Browse files Browse the repository at this point in the history
# Conflicts:
#	poetry.lock
#	pyproject.toml
  • Loading branch information
dhosterman committed Sep 13, 2024
2 parents a174283 + c76dad4 commit 5c17432
Show file tree
Hide file tree
Showing 6 changed files with 1,476 additions and 840 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/scheduled-smoke-test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Smoke test

on:
# regular runs
schedule:
# Every day at 08:00 UTC
- cron: '0 8 * * *'
# allow button click
workflow_dispatch:

permissions:
contents: read
Expand Down Expand Up @@ -69,7 +72,7 @@ jobs:
mkdir -p config
echo "$SECRETS_CONFIG" > config/secrets.toml
- name: Test with plugin
- name: Test standard run
run: |
source .venv/bin/activate
modelbench benchmark --debug -m 1
Expand All @@ -81,3 +84,16 @@ jobs:
RUN_ID: ${{ github.run_id }}
with:
filename: .github/failed-scheduled-issue.md

- name: Test v1 run
run: |
source .venv/bin/activate
modelbench benchmark --debug -m 1 --benchmark GeneralPurposeAiChatBenchmarkV1
- uses: JasonEtco/create-an-issue@v2
if: failure()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUN_ID: ${{ github.run_id }}
with:
filename: .github/failed-scheduled-issue.md
Loading

0 comments on commit 5c17432

Please sign in to comment.