Skip to content

Commit

Permalink
Updating GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Dec 20, 2024
1 parent 0e24308 commit f36fbf7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests-all-dbs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: With and Without Mongo
name: With and Without Mongo at the same time
on: [pull_request]

jobs:
Expand All @@ -8,7 +8,7 @@ jobs:
timeout-minutes: 40
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
python-version: [ "3.10", "3.11", "3.12" ]
env:
MONGO_ENABLED: true
LMDB_ENABLED: true
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/run-tests-kafka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
env:
MONGO_ENABLED: true
LMDB_ENABLED: false
Expand All @@ -21,10 +24,10 @@ jobs:
with:
fetch-depth: 1

- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
cache: "pip"

- name: Run docker compose
Expand Down

0 comments on commit f36fbf7

Please sign in to comment.