Browse Source

Merge pull request #639 from PeterDaveHello/AddMorePythonVersionsOnGitHubActions

Also add Python v3.6, v3.8 on GitHub Actions for test
pull/641/head
Ross McFarland 5 years ago
committed by GitHub
parent
commit
b1b992c628
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      .github/workflows/main.yml

+ 3
- 1
.github/workflows/main.yml View File

@ -6,7 +6,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.7, 3.9]
# Tested versions based on dates in https://devguide.python.org/devcycle/#end-of-life-branches,
# with the addition of 2.7 b/c it's still if pretty wide active use.
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@master
- name: Setup python


Loading…
Cancel
Save