We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 175f7ef commit aec2c73Copy full SHA for aec2c73
1 file changed
.github/workflows/deploy-integration-tests.yml
@@ -25,15 +25,16 @@ jobs:
25
virtualenvs-in-project: true
26
installer-parallel: true
27
28
- - name: Install Dependencies
29
- run: poetry install --no-interaction --no-root
30
- if: steps.cache.outputs.cache-hit != 'true'
31
-
+ # - name: Install Dependencies
+ # run: poetry install --no-interaction --no-root
+ # if: steps.cache.outputs.cache-hit != 'true'
+
32
- name: Configure Beam
33
env:
34
BEAM_TOKEN: ${{ secrets.BEAM_INTEGRATION_TEST_TOKEN }}
35
run: |
36
- pip install beam-client
+ poetry export --without-hashes --format=requirements.txt > requirements.txt
37
+ pip install -r requirements.txt
38
echo $BEAM_TOKEN | beam config create default --gateway-host gateway.stage.beam.cloud --gateway-port 443
39
40
- name: Deploy
0 commit comments