We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b68994 commit 70c4e0aCopy full SHA for 70c4e0a
1 file changed
.github/workflows/deploy-integration-tests.yml
@@ -3,7 +3,7 @@ name: Deploy Integration Tests
3
on: [push]
4
5
jobs:
6
- lint_and_test:
+ deploy-integration-tests:
7
runs-on: ubuntu-latest
8
9
steps:
@@ -32,7 +32,9 @@ jobs:
32
- name: Configure Beam
33
env:
34
BEAM_TOKEN: ${{ secrets.BEAM_INTEGRATION_TEST_TOKEN }}
35
- run: beam config create default --token $BEAM_TOKEN --gateway-host gateway.stage.beam.cloud --gateway-port 443
+ run: |
36
+ pip install beam-client
37
+ beam config create default --token $BEAM_TOKEN --gateway-host gateway.stage.beam.cloud --gateway-port 443
38
39
- name: Deploy
40
run: cd tests && beam deploy app.py:run_tests -n integration-tests
0 commit comments