File tree Expand file tree Collapse file tree 4 files changed +21
-17
lines changed Expand file tree Collapse file tree 4 files changed +21
-17
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ name: CI
2
2
3
3
on :
4
4
push :
5
- branches : develop
5
+ branches :
6
+ - develop
6
7
pull_request :
7
- branches : develop
8
+ branches :
9
+ - develop
8
10
9
11
jobs :
10
12
test :
17
19
18
20
steps :
19
21
- name : Checkout Repository
20
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
21
23
22
24
- name : Set up Python for CI - ${{ matrix.python-version }}
23
25
uses : actions/setup-python@v4
60
62
61
63
steps :
62
64
- name : Checkout Repository
63
- uses : actions/checkout@v3
65
+ uses : actions/checkout@v4
64
66
65
67
- name : Download Corretto 17 JDK
66
68
run : |
Original file line number Diff line number Diff line change @@ -2,17 +2,19 @@ name: Lint code
2
2
3
3
on :
4
4
push :
5
- branches : develop
5
+ branches :
6
+ - develop
6
7
pull_request :
7
- branches : develop
8
+ branches :
9
+ - develop
8
10
9
11
jobs :
10
12
lint :
11
13
runs-on : ubuntu-latest
12
14
13
15
steps :
14
16
- name : Checkout Repository
15
- uses : actions/checkout@v1
17
+ uses : actions/checkout@v4
16
18
17
19
- name : Set up Python for linting - 3.11
18
20
uses : actions/setup-python@v4
Original file line number Diff line number Diff line change @@ -2,21 +2,19 @@ name: Protocol Tests
2
2
3
3
on :
4
4
push :
5
- branches : develop
5
+ branches :
6
+ - develop
6
7
pull_request :
7
- branches : develop
8
+ branches :
9
+ - develop
8
10
9
11
jobs :
10
12
protocol-test :
11
13
runs-on : ubuntu-latest
12
-
13
- strategy :
14
- fail-fast : false
15
-
16
14
name : RestJson1
17
15
18
16
steps :
19
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
20
18
21
19
- name : Set up Corretto 17 JDK
22
20
uses : actions/setup-java@v3
Original file line number Diff line number Diff line change @@ -2,17 +2,19 @@ name: Type Check
2
2
3
3
on :
4
4
push :
5
- branches : develop
5
+ branches :
6
+ - develop
6
7
pull_request :
7
- branches : develop
8
+ branches :
9
+ - develop
8
10
9
11
jobs :
10
12
mypy :
11
13
runs-on : ubuntu-latest
12
14
13
15
steps :
14
16
- name : Checkout Repository
15
- uses : actions/checkout@v1
17
+ uses : actions/checkout@v4
16
18
17
19
- name : Set up Python for type checking - 3.11
18
20
uses : actions/setup-python@v4
You can’t perform that action at this time.
0 commit comments