Skip to content

Commit

Permalink
WIP: add steps to check that the env is setup from github
Browse files Browse the repository at this point in the history
  • Loading branch information
cdunster committed Sep 9, 2024
1 parent 3969b5c commit e186d5d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/performance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Check that env vars are set
run: echo $WIND_TUNNEL_TEST

- name: Check that secrets are set
run: |
if [[ -z "$CACHIX_HOLOCHAIN_WIND_TUNNEL" ]]; then
echo "Not set"
else
echo "Set"
fi
- name: Smoke test - zome_call_single_value
run: |
# Start a sandbox conductor and run it in the background
Expand Down

0 comments on commit e186d5d

Please sign in to comment.