Skip to content

Commit

Permalink
Merge pull request #8 from neo4j-labs/develop
Browse files Browse the repository at this point in the history
Creating workflows for releasing and testing
  • Loading branch information
alfredorubin96 authored Sep 12, 2023
2 parents 81baced + ffc3376 commit 3936259
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@
name: Integration tests

on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master","develop" ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
fail-fast: true
matrix:
python-version: ["3.x"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v3
Expand All @@ -27,9 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
pip install -r requirements.txt
- name: Test with pytest
run: |
pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
pytest
2 changes: 1 addition & 1 deletion .github/release.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 3936259

Please sign in to comment.