Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vnft-service #16

Merged
merged 5 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading