Skip to content

Commit

Permalink
Merge pull request #16 from gear-foundation/tm-vnft
Browse files Browse the repository at this point in the history
Add vnft-service
  • Loading branch information
MedovTimur authored Aug 2, 2024
2 parents e2a0845 + c0b9c3d commit 7d93ca4
Show file tree
Hide file tree
Showing 8 changed files with 8,120 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,33 @@ jobs:

- name: Run Clippy
run: cargo clippy -r --manifest-path vft-service/Cargo.toml -- -D warnings

vnft-service:
name: VnftService
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
override: true

- name: Install Clippy
run: rustup component add clippy

- name: Install Rustfmt
run: rustup component add rustfmt

- name: Check formatting
run: cargo fmt --all --manifest-path vnft-service/Cargo.toml -- --check

- name: Run Clippy
run: cargo clippy -r --manifest-path vnft-service/Cargo.toml -- -D warnings

extend-vft:
needs: [vft-service]
Expand Down
Binary file added vnft-service/.DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions vnft-service/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
./wasm/.binpath
./wasm/.DS_Store
Loading

0 comments on commit 7d93ca4

Please sign in to comment.