From ccad789e7b3faa677c47c4076e8499b0759934d6 Mon Sep 17 00:00:00 2001 From: bal7hazar Date: Tue, 5 Dec 2023 09:13:15 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Upgrade=20dojo=20to=200.3.?= =?UTF-8?q?15=20=F0=9F=90=9B=20Add=20token=20test=20in=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 13 ++++++++++++- Scarb.lock | 4 ++-- Scarb.toml | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7de6f343..bb3f7d57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: Origami CI on: [push, pull_request] env: - DOJO_VERSION: v0.3.14 + DOJO_VERSION: v0.3.15 SCARB_VERSION: v2.3.1 jobs: @@ -41,6 +41,17 @@ jobs: run: sozo test -f origami shell: bash + token: + needs: [check, build] + runs-on: ubuntu-latest + name: Test token + steps: + - uses: actions/checkout@v4 + - uses: ./.github/actions/setup + - name: Test + run: sozo test -f token + shell: bash + market: needs: [check, build] runs-on: ubuntu-latest diff --git a/Scarb.lock b/Scarb.lock index 9b1ee611..b7727710 100644 --- a/Scarb.lock +++ b/Scarb.lock @@ -8,8 +8,8 @@ source = "git+https://github.com/influenceth/cubit?rev=b459053#b4590530d5aeae9aa [[package]] name = "dojo" -version = "0.3.14" -source = "git+https://github.com/dojoengine/dojo?tag=v0.3.14#d7e9788459f3b2e797b6565f1057c96a6f5f8cc2" +version = "0.3.15" +source = "git+https://github.com/dojoengine/dojo?tag=v0.3.15#cdbaca4121b1642e1a8ca40d6831bad73d28ed26" dependencies = [ "dojo_plugin", ] diff --git a/Scarb.toml b/Scarb.toml index 2c4d0de6..51ae95fa 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -9,5 +9,5 @@ authors = ["bal7hazar@proton.me"] [workspace.dependencies] cubit = { git = "https://github.com/influenceth/cubit", rev = "b459053" } -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.14" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.15" } origami = { path = "crates" }