summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDashie <dashie@sigpipe.me>2021-02-24 00:16:52 +0100
committerDashie <dashie@sigpipe.me>2021-02-24 00:16:52 +0100
commit7dc45b7a85b7a5c1db419e9a24596ee506f06730 (patch)
tree94b2dcc1a4559c0b43136cb93835bb8af692cc20
parent565f0eb58392b6cfb25c34b0dc1d1f98f205dc9c (diff)
Add python 3.8 to CI
-rw-r--r--.circleci/config.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 377ba51a..d0ddcbc5 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -222,6 +222,12 @@ jobs:
- image: circleci/python:3.7-buster-node
<<: *install_python_dependencies
+ install-python3.8:
+ <<: *defaults
+ docker:
+ - image: circleci/python:3.8-buster-node
+ <<: *install_python_dependencies
+
install-python3.9:
<<: *defaults
docker:
@@ -248,6 +254,16 @@ jobs:
POSTGRES_DB: reel2bits_test
<<: *test_steps
+ test-python3.8:
+ <<: *defaults
+ docker:
+ - image: circleci/python:3.8-buster-node
+ - image: circleci/postgres:11-alpine
+ environment:
+ POSTGRES_USER: postgres
+ POSTGRES_DB: reel2bits_test
+ <<: *test_steps
+
test-python3.9:
<<: *defaults
docker:
@@ -313,6 +329,9 @@ workflows:
- install-python3.7:
requires:
- install
+ - install-python3.8:
+ requires:
+ - install
- install-python3.9:
requires:
- install
@@ -322,6 +341,9 @@ workflows:
- test-python3.7:
requires:
- install-python3.7
+ - test-python3.8:
+ requires:
+ - install-python3.8
- test-python3.9:
requires:
- install-python3.9