-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Bal7hazar/refactor/multi-to-single-package
Refactor/multi to single package
- Loading branch information
Showing
52 changed files
with
202 additions
and
251 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Origami Examples CI | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
DOJO_VERSION: v0.3.4 | ||
SCARB_VERSION: v2.3.1 | ||
WORKING_DIRECTORY: examples | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
name: Check format | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: software-mansion/setup-scarb@v1 | ||
with: | ||
scarb-version: ${{ env.SCARB_VERSION }} | ||
- name: Format | ||
working-directory: ${{ env.WORKING_DIRECTORY }} | ||
run: scarb fmt --check | ||
shell: bash | ||
|
||
build: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
name: Build package | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Build | ||
working-directory: ${{ env.WORKING_DIRECTORY }} | ||
run: sozo build | ||
shell: bash | ||
|
||
market: | ||
needs: [check, build] | ||
runs-on: ubuntu-latest | ||
name: Test market | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Test | ||
working-directory: ${{ env.WORKING_DIRECTORY }} | ||
run: sozo test -f market | ||
shell: bash | ||
|
||
projectile: | ||
needs: [check, build] | ||
runs-on: ubuntu-latest | ||
name: Test projectile | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Test | ||
working-directory: ${{ env.WORKING_DIRECTORY }} | ||
run: sozo test -f projectile | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Origami CI | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
DOJO_VERSION: v0.3.4 | ||
SCARB_VERSION: v2.3.1 | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
name: Check format | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: software-mansion/setup-scarb@v1 | ||
with: | ||
scarb-version: ${{ env.SCARB_VERSION }} | ||
- name: Format | ||
run: scarb fmt --check | ||
shell: bash | ||
|
||
build: | ||
needs: check | ||
runs-on: ubuntu-latest | ||
name: Build package | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Build | ||
run: sozo build | ||
shell: bash | ||
|
||
origami: | ||
needs: [check, build] | ||
runs-on: ubuntu-latest | ||
name: Test crates | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup | ||
- name: Test | ||
run: sozo test | ||
shell: bash |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
[workspace] | ||
[package] | ||
name = "origami" | ||
version = "0.0.0" | ||
description = "Community-maintained libraries for Cairo" | ||
homepage = "https://github.com/dojoengine/origami" | ||
members = [ | ||
"crates/*", | ||
"examples/*", | ||
] | ||
|
||
[workspace.dependencies] | ||
dojo = { git = "https://github.com/dojoengine/dojo.git", tag = "v0.3.4" } | ||
[lib] | ||
|
||
[dependencies] | ||
cubit = { git = "https://github.com/influenceth/cubit", rev = "b459053" } | ||
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.4" } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Oops, something went wrong.