Commit 1f3661c 1 parent 04422d0 commit 1f3661c Copy full SHA for 1f3661c
File tree 1 file changed +19
-1
lines changed
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 13
13
# You can use PyPy versions in python-version.
14
14
# For example, pypy2 and pypy3
15
15
matrix :
16
- python-version : [3.7, 3.8, 3.9]
16
+ python-version : [
17
+ ' 3.7' ,
18
+ ' 3.8' ,
19
+ ' 3.9' ,
20
+ ' 3.10' ,
21
+ ' 3.11' ,
22
+ ]
23
+ certbot-version : [
24
+ # '1.14.0', # tests use features not available in this version
25
+ ' 1.32.0' ,
26
+ ' 2.0.0' ,
27
+ ]
17
28
18
29
steps :
19
30
- uses : actions/checkout@v2
25
36
run : |
26
37
pip3 install -r requirements.txt
27
38
pip3 install .
39
+ if [[ $CERTBOT_VERSION != "latest" ]]
40
+ then
41
+ pip3 install --upgrade certbot~=$CERTBOT_VERSION
42
+ pip3 install --upgrade acme~=$CERTBOT_VERSION
43
+ fi
28
44
pip3 freeze
45
+ env :
46
+ CERTBOT_VERSION : ${{ matrix.certbot-version }}
29
47
30
48
- name : flake8 Linter
31
49
run : python3 -m flake8 certbot_dns_desec
You can’t perform that action at this time.
0 commit comments