π update README.md #9
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: Cairo Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: software-mansion/setup-scarb@v1 | |
- run: scarb build | |
- run: scarb fmt -c | |
- run: scarb test | |
- run: scarb run isquine src/formatted_quine.cairo | |
- run: scarb run isquine src/small_quine.cairo | |
- run: scarb run isquine src/smaller_quine.cairo |