Add Test precision #310
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: Run Katana | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
katana: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust Toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
override: true | |
- name: Install scarb | |
uses: software-mansion/setup-scarb@v1 | |
with: | |
scarb-version: "0.7.0" | |
- name: Setup Katana .env | |
run: | | |
cp .github/workflows/katana/katana.env .env | |
- name: Download Katana | |
run: | | |
wget https://github.com/dojoengine/dojo/releases/download/v0.3.1/dojo_v0.3.1_linux_amd64.tar.gz | |
tar -xzvf dojo_v0.3.1_linux_amd64.tar.gz | |
rm sozo torii dojo-language-server | |
- name: Run Tests | |
run: | | |
./katana & | |
make demo-local |