Skip to content

Commit

Permalink
Run tests on develop (OpenBB-finance#5725)
Browse files Browse the repository at this point in the history
* Run tests on develop

* Add a check that files changes in platform
  • Loading branch information
jmaslek authored Nov 14, 2023
1 parent 2db0144 commit 139efd3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/platform-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Test Platform V4
on:
pull_request:
branches:
- feature/openbb-sdk-v4
- develop
paths:
- 'openbb_platform/**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
Expand All @@ -14,9 +16,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: false

matrix:
python_version:
["3.8", "3.9", "3.10", "3.11"]
["3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
]


@nox.session(python=["3.8", "3.9", "3.10", "3.11"])
@nox.session(python=["3.9", "3.10", "3.11"])
def tests(session):
session.install("poetry", "toml")
session.run(
Expand Down

0 comments on commit 139efd3

Please sign in to comment.