Skip to content

Commit

Permalink
Follow-up to PR #13
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroCool940711 committed Jan 3, 2024
1 parent 539e67a commit ecc3746
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install pytest nose coverage cached-property
python setup.py clean build install
pip install pytest pytest-cov coverage cached-property
python setup.py clean build install
- name: Run test
run: nosetests --with-coverage
run: pytest

0 comments on commit ecc3746

Please sign in to comment.