fix merge main conflict #862
Workflow file for this run
This file contains 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: test | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
services: | |
devnet: | |
image: shardlabs/starknet-devnet:0.3.4 | |
ports: | |
- 5050:5050 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: wait for devnet to be up... | |
run: ./.bin/devnet.sh | |
- name: Test contracts deployment and execute | |
run: cd contracts && go test -env devnet -v -run "^(TestGateway|TestRPC)" . | |
- name: Test Accounts (starknet.go) on devnet | |
run: go test -timeout 600s -v -env devnet -run "^(TestGateway|TestRPC|TestGeneral)" . | |
env: | |
TESTNET_ACCOUNT_PRIVATE_KEY: ${{ secrets.TESTNET_ACCOUNT_PRIVATE_KEY }} | |
INTEGRATION_BASE: "http://localhost:5050/rpc" | |
- name: Test sessionkey on devnet | |
run: cd plugins/xsessions && ./sessionkey.sh | |
- name: Test Gateway with testnet | |
run: cd gateway && go test -v -env testnet . | |
- name: Test Gateway with devnet | |
run: cd gateway && go test -v -env devnet . |