Skip to content

Commit

Permalink
Updated python versions in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
brnorris03 committed Dec 27, 2020
1 parent ae80d2d commit 4d327b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 2.7 ]
python-version: [ 3.6, 3.7, 3.8 ]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -33,7 +33,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 2.7 ]
python-version: [ 3.6, 3.7, 3.8 ]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -33,7 +33,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
Expand Down

0 comments on commit 4d327b9

Please sign in to comment.