Skip to content

Commit

Permalink
run sklearn on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuoxuan-Zhang committed Oct 24, 2024
1 parent 7fa9977 commit c4e66f6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
benchmark: [nlp, file-enc, unix50, log-analysis, max-temp, uniq-ips, media-conv]
benchmark: [nlp, file-enc, unix50, log-analysis, max-temp, uniq-ips, media-conv, sklearn]

steps:
- name: Checkout code
Expand Down
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions sklearn/verify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

# shell script to run verify.py

# run the Python script
python3 verify.py

# check if the script ran successfully
if [ $? -eq 0 ]; then
echo "verify.py ran successfully."
else
echo "verify.py encountered an error."
fi

0 comments on commit c4e66f6

Please sign in to comment.