Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Apr 18, 2021
1 parent 6e10434 commit 05e6272
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,25 +72,20 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.4, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Before install
run: |
python -m venv venv
venv\Scripts\Activate.ps1
- name: Install packages
run: |
pip install --upgrade pip wheel setuptools
pip install -r requirements\default.txt
pip install -r requirements\test.txt
python setup.py build --compiler=msvc
python -m pip install --upgrade pip wheel setuptools
python -m pip install -r requirements\default.txt
python -m pip install -r requirements\test.txt
python setup.py build_ext --compiler=msvc
python setup.py install
pip list
Expand Down

0 comments on commit 05e6272

Please sign in to comment.