Create contracts package and hash logic (#377) #922
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 "^(TestRPC)" . | |
- name: Test Accounts (starknet.go) on devnet | |
run: go test -timeout 600s -v -env devnet -run "^(TestRPC|TestGeneral)" . | |
env: | |
TESTNET_ACCOUNT_PRIVATE_KEY: ${{ secrets.TESTNET_ACCOUNT_PRIVATE_KEY }} | |
INTEGRATION_BASE: "http://localhost:5050/rpc" |