We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 096bb06 commit 730d091Copy full SHA for 730d091
.github/workflows/integration-tests.yml
@@ -2,6 +2,11 @@ name: Run integration tests
2
on:
3
workflow_dispatch:
4
workflow_call:
5
+ secrets:
6
+ FIREBOLT_USERNAME:
7
+ required: true
8
+ FIREBOLT_PASSWORD:
9
10
jobs:
11
tests:
12
runs-on: ubuntu-latest
.github/workflows/release.yml
@@ -13,6 +13,9 @@ on:
13
14
integration-tests:
15
uses: firebolt-db/firebolt-python-sdk/.github/workflows/integration-tests.yml@main
16
17
+ FIREBOLT_USERNAME: ${{ secrets.FIREBOLT_USERNAME }}
18
+ FIREBOLT_PASSWORD: ${{ secrets.FIREBOLT_PASSWORD }}
19
20
publish:
21
0 commit comments