File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
# This workflow will install Python dependencies, run tests and lint with a single version of Python
2
2
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
3
4
- name : Test
4
+ name : Various Checks and Tests
5
5
6
6
on :
7
7
push :
8
- branches : [ master, dev/jan, experimental ]
8
+ branches : [ master, experimental ]
9
9
pull_request :
10
- branches : [ master, dev/jan, experimental ]
10
+ branches : [ master, experimental ]
11
11
12
12
jobs :
13
13
build :
@@ -16,10 +16,10 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
- - name : Set up Python 3.6
19
+ - name : Set up Python 3.x
20
20
uses : actions/setup-python@v2
21
21
with :
22
- python-version : 3.6
22
+ python-version : ' >=3.7 <=3.12 '
23
23
- name : Install dependencies
24
24
run : |
25
25
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 1
- name : Test PyPI Installation
1
+ name : Check PyPI Installation
2
2
3
3
on :
4
4
workflow_dispatch :
5
5
6
6
push :
7
- branches : [ master, dev/jan ]
7
+ branches : [ master ]
8
8
pull_request :
9
- branches : [ master, dev/jan ]
9
+ branches : [ master ]
10
10
11
11
jobs :
12
12
build :
@@ -15,10 +15,10 @@ jobs:
15
15
16
16
steps :
17
17
- uses : actions/checkout@v2
18
- - name : Set up Python 3.6
18
+ - name : Set up Python 3.x
19
19
uses : actions/setup-python@v2
20
20
with :
21
- python-version : 3.6
21
+ python-version : ' >=3.7 <=3.12 '
22
22
- name : Install dependencies
23
23
run : |
24
24
python -m pip install --upgrade pip
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v2
16
- - name : Set up Python
16
+ - name : Set up Python 3.x
17
17
uses : actions/setup-python@v1
18
18
with :
19
- python-version : " 3.6 "
19
+ python-version : ' >=3.7 <=3.12 '
20
20
- name : Install Poetry
21
21
run : |
22
22
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
You can’t perform that action at this time.
0 commit comments