Merge pull request #963 from neo4j-contrib/docs-update-badges #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-neo44-py27 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["2.7"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: MatteoH2O1999/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '8.0.x' | |
java-package: jdk | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Perform legal checks | |
run: bin/check-legal | |
- name: Perform installation check | |
run: bin/check-install | |
- name: Run tests | |
run: bin/test -v -x | |
env: | |
NEO4J_VERSION: '4.4' | |
- name: Set up Python for coverage | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.12 | |
- name: Create lcov coverage report | |
run: | | |
pip install coverage | |
coverage lcov --rcfile="test/.coveragerc" | |
- name: Upload coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: coverage.lcov |