Skip to content

Commit

Permalink
action for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guofei9987 committed Sep 14, 2023
1 parent 885a30e commit 8e7f930
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ jobs:
run:
working-directory: .
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install requirements
run: |
pip install -r requirements.txt
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# pip install pytest-cover
- name: Run tests and collect coverage
run: |
Expand Down

0 comments on commit 8e7f930

Please sign in to comment.