Skip to content

再试试+1

再试试+1 #11

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
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