feat: implementation of token transfer (ICS20) contract #2
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: Tests | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/tests.yaml | |
- contracts/** | |
- justfile | |
push: | |
tags: | |
- v[0-9]+.* | |
branches: | |
- "release/*" | |
- main | |
jobs: | |
test-contracts: | |
name: Test Cairo Contracts | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Scarb | |
uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "2.6.5" | |
- name: Install Just | |
uses: extractions/setup-just@v1 | |
- name: Run Tests | |
run: just test-contracts |