Skip to content

Commit

Permalink
try_action_again
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimmer756 committed Oct 25, 2024
1 parent d72270e commit 5b565e6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,24 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.9' # 你可以明确指定一个合适的 Python 版本

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy pandas pytest
- name: Verify dependencies
run: |
python -c "import numpy; import pandas; import pytest"
- name: Run tests
run: pytest








0 comments on commit 5b565e6

Please sign in to comment.