Skip to content

chore(deps): bump anyhow from 1.0.71 to 1.0.72 #45

chore(deps): bump anyhow from 1.0.71 to 1.0.72

chore(deps): bump anyhow from 1.0.71 to 1.0.72 #45

Workflow file for this run

name: "E2E Test"
on:
pull_request:
branches: [main]
jobs:
integration:
name: E2E Test
runs-on: ubuntu-latest
steps:
- name: Setup BATS
uses: mig4/setup-bats@v1
with:
bats-version: 1.9.0
- uses: actions/checkout@v3
- name: Setup cache for cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Run e2e
env:
GALOY_API: https://api.staging.galoy.io/graphql
USER_A_PHONE: ${{ secrets.USER_A_PHONE }}
USER_A_CODE: ${{ secrets.USER_A_CODE }}
USER_A_USERNAME: ${{ secrets.USER_A_USERNAME }}
USER_B_PHONE: ${{ secrets.USER_B_PHONE }}
USER_B_CODE: ${{ secrets.USER_B_CODE }}
USER_B_USERNAME: ${{ secrets.USER_B_USERNAME }}
run: make e2e