This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
fix: update compilation workflow #1
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: Scarb Cairo Build and Format | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Scarb | |
- name: Install Scarb | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh | |
# Build and format all .cairo files | |
- name: Build and Format Cairo Files | |
run: | | |
scarb build | |
scarb fmt |