Skip to content

Commit

Permalink
Merge pull request #36 from dojoengine/update
Browse files Browse the repository at this point in the history
0.4.0 and fix lang server path
  • Loading branch information
ponderingdemocritus authored Jan 5, 2024
2 parents 2a7cfaa + d03e57e commit 2b7fef1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: CI

on:
push:
pull_request:
push:
pull_request:

jobs:
sozo-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl -L https://install.dojoengine.org | bash
- run: /home/runner/.config/.dojo/bin/dojoup -v v0.4.0
- run: |
/home/runner/.config/.dojo/bin/sozo build
/home/runner/.config/.dojo/bin/sozo test
sozo-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: curl -L https://install.dojoengine.org | bash
- run: /home/runner/.config/.dojo/bin/dojoup -v v0.4.4
- run: |
/home/runner/.config/.dojo/bin/sozo build
/home/runner/.config/.dojo/bin/sozo test
6 changes: 3 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"cairo1.languageServerPath": "$HOME/.dojo/bin/dojo-language-server",
"cairo1.enableLanguageServer": true,
"cairo1.enableScarb": true
}
"cairo1.enableScarb": false,
"cairo1.languageServerPath": "${userHome}/.dojo/bin/dojo-language-server"
}
6 changes: 3 additions & 3 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version = 1

[[package]]
name = "dojo"
version = "0.4.1"
source = "git+https://github.com/dojoengine/dojo#3de37a62cfbd81063bd5eb1ad39f028b2d482049"
version = "0.4.4"
source = "git+https://github.com/dojoengine/dojo#37f41d585f549013a73ca189034b0471f1e81731"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_examples"
version = "0.4.0"
version = "0.4.4"
dependencies = [
"dojo",
]
Expand Down
4 changes: 2 additions & 2 deletions Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
cairo-version = "2.4.0"
name = "dojo_examples"
version = "0.4.0"
version = "0.4.4"

[cairo]
sierra-replace-ids = true

[dependencies]
dojo = { git = "https://github.com/dojoengine/dojo", version = "0.4.1" }
dojo = { git = "https://github.com/dojoengine/dojo", version = "0.4.4" }

[[target.dojo]]

Expand Down

0 comments on commit 2b7fef1

Please sign in to comment.