Skip to content

Commit 6c2d456

Browse files
committed
One Neo4j version per action file
1 parent ada01ed commit 6c2d456

13 files changed

+466
-5
lines changed

.github/workflows/test-18.04.yml renamed to .github/workflows/test-neo4j-3.4-ubuntu-18.04.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run tests (Ubuntu 18.04)
1+
name: Run Neo4j 3.4 tests (Ubuntu 18.04)
22

33
on:
44
push:
@@ -39,6 +39,8 @@ jobs:
3939

4040
- name: Run tests
4141
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '3.4'
4244

4345
- name: Upload coverage
4446
run: coveralls

.github/workflows/test-neo3x-20.04.yml renamed to .github/workflows/test-neo4j-3.4-ubuntu-20.04.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Neo4j 3.x tests (Ubuntu 21.04)
1+
name: Run Neo4j 3.4 tests (Ubuntu 20.04)
22

33
on:
44
push:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Run tests
4141
run: bin/test -v -x
4242
env:
43-
NEO4J_VERSION: '3.x'
43+
NEO4J_VERSION: '3.4'
4444

4545
- name: Upload coverage
4646
run: coveralls
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 3.5 tests (Ubuntu 18.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-18.04
13+
strategy:
14+
matrix:
15+
python-version: ["2.7", "3.4"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '3.5'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test-neo4x-20.04.yml renamed to .github/workflows/test-neo4j-3.5-ubuntu-20.04.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Neo4j 4.x tests (Ubuntu 21.04)
1+
name: Run Neo4j 3.5 tests (Ubuntu 20.04)
22

33
on:
44
push:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Run tests
4141
run: bin/test -v -x
4242
env:
43-
NEO4J_VERSION: '4.x'
43+
NEO4J_VERSION: '3.5'
4444

4545
- name: Upload coverage
4646
run: coveralls
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.0 tests (Ubuntu 18.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-18.04
13+
strategy:
14+
matrix:
15+
python-version: ["2.7", "3.4"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.0'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.0 tests (Ubuntu 20.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-20.04
13+
strategy:
14+
matrix:
15+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.0'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.1 tests (Ubuntu 18.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-18.04
13+
strategy:
14+
matrix:
15+
python-version: ["2.7", "3.4"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.1'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.1 tests (Ubuntu 20.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-20.04
13+
strategy:
14+
matrix:
15+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.1'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.2 tests (Ubuntu 18.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-18.04
13+
strategy:
14+
matrix:
15+
python-version: ["2.7", "3.4"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.2'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Run Neo4j 4.2 tests (Ubuntu 20.04)
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
12+
runs-on: ubuntu-20.04
13+
strategy:
14+
matrix:
15+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"]
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
- uses: actions/setup-java@v1
24+
with:
25+
java-version: '8.0.x'
26+
java-package: jdk
27+
28+
- name: Install dependencies
29+
run: |
30+
python -m pip install --upgrade pip wheel
31+
pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip
32+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33+
34+
- name: Perform legal checks
35+
run: bin/check-legal
36+
37+
- name: Perform installation check
38+
run: bin/check-install
39+
40+
- name: Run tests
41+
run: bin/test -v -x
42+
env:
43+
NEO4J_VERSION: '4.2'
44+
45+
- name: Upload coverage
46+
run: coveralls
47+
env:
48+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)