update env vars #538
Workflow file for this run
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: KittyPunch tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| tests: | |
| name: KittyPunch Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GH_PAT }} | |
| submodules: recursive | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.23.x" | |
| cache: true | |
| cache-dependency-path: | | |
| **/go.sum | |
| - 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 deps | |
| 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: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Setup PunchSwap | |
| run: ./local/punchswap/setup_punchswap.sh | |
| - name: Run e2e script | |
| run: ./local/punchswap/e2e_punchswap.sh | |