Skip to content

Commit

Permalink
[build] test all supported python versions #1014
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Jun 27, 2021
1 parent a9f78d1 commit 4dd4143
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ workflows:
test:
jobs:
- test-3.6
- test-3.7
- test-3.8
- test-3.9
jobs:
test-3.6: &test-template
working_directory: ~/visidata
Expand All @@ -25,3 +28,18 @@ jobs:
- run:
command: |
dev/test.sh
test-3.7:
<<: *test-template
docker:
- image: circleci/python:3.7

test-3.8:
<<: *test-template
docker:
- image: circleci/python:3.8

test-3.9:
<<: *test-template
docker:
- image: circleci/python:3.9

0 comments on commit 4dd4143

Please sign in to comment.