update FCM ref #587
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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-alias --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 |