Merge pull request #133 from HerodotusDev/feat/cairo1-cairo0-public-m… #208
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: Continuous Integration - tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
formatting-and-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Scarb | |
uses: software-mansion/setup-scarb@v1 | |
- name: Format code | |
run: scarb fmt --check | |
- name: Run tests | |
run: scarb test | |
- name: Build fact registry | |
run: (cd fact_registry && scarb build) |