Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Fix: typos (#73)

Fix: typos (#73) #112

Workflow file for this run

name: Run StarkNet compilation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: |
pip install cairo-lang asynctest pytest && \
for cairo_file in $(find contracts/ -type f -name "*.cairo"); do
starknet-compile $cairo_file
done && \
pytest -W ignore::DeprecationWarning