Skip to content

Commit

Permalink
update workflow to set MONGO_CONNECTION_STRING_2 in env
Browse files Browse the repository at this point in the history
  • Loading branch information
mpangrazzi committed Dec 4, 2024
1 parent d92dc40 commit a658301
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/mongodb_atlas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ name: Test / mongodb_atlas

on:
schedule:
- cron: "0 0 * * *"
- cron: '0 0 * * *'
pull_request:
paths:
- "integrations/mongodb_atlas/**"
- ".github/workflows/mongodb_atlas.yml"
- 'integrations/mongodb_atlas/**'
- '.github/workflows/mongodb_atlas.yml'

defaults:
run:
Expand All @@ -19,9 +19,10 @@ concurrency:
cancel-in-progress: true

env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
PYTHONUNBUFFERED: '1'
FORCE_COLOR: '1'
MONGO_CONNECTION_STRING: ${{ secrets.MONGO_CONNECTION_STRING }}
MONGO_CONNECTION_STRING_2: ${{ secrets.MONGO_CONNECTION_STRING_2 }}

jobs:
run:
Expand All @@ -31,7 +32,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit a658301

Please sign in to comment.