Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Jan 25, 2024
0 parents commit b845b3b
Show file tree
Hide file tree
Showing 26 changed files with 7,736 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Rust

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Update submodules
run: git submodule update --init
- name: Build contract
run: make all-via-docker
- name: Run tests
run: cargo test
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target/
build/
!build/.gitkeep
.vscode
cmake-build-debug
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "deps/ckb-c-std-lib"]
path = deps/ckb-c-std-lib
url = https://github.com/nervosnetwork/ckb-c-stdlib
[submodule "deps/secp256k1"]
path = deps/secp256k1
url = https://github.com/nervosnetwork/secp256k1
Loading

0 comments on commit b845b3b

Please sign in to comment.