-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 1021 Bytes
/
incrementfi_tests.yml
File metadata and controls
37 lines (35 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: IncrementFi
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
name: IncrementFi Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
submodules: recursive
- name: Install Flow CLI
run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
- name: Flow CLI Version
run: flow version
- name: Update PATH
run: echo "/root/.local/bin" >> $GITHUB_PATH
- name: Run emulator
run: ./local/run_emulator.sh
- name: Install flow dependencies
run: flow deps install --skip-deployments
- name: Create wallets
run: ./local/setup_wallets.sh
- name: Run EVM gateway
run: ./local/run_evm_gateway.sh
- name: Deploy contracts
run: ./local/setup_emulator.sh
- name: Setup IncrementFi
run: ./local/incrementfi/setup_incrementfi.sh