diff --git a/.github/workflows/wintest-neo43-py35+.yml b/.github/workflows/wintest-neo43-py35+.yml deleted file mode 100644 index d6d2f9e6..00000000 --- a/.github/workflows/wintest-neo43-py35+.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: wintest-neo43-py35+ - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - test: - - runs-on: windows-2019 - strategy: - matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9"] - - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/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 - pip install https://github.com/bboe/coveralls-python/archive/github_actions.zip - pip install -r requirements.txt - - - 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.3' - - - name: Upload coverage - run: coveralls - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}