Skip to content

Commit

Permalink
mempool-observer version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xB10C committed May 6, 2021
0 parents commit 7dbcdd3
Show file tree
Hide file tree
Showing 154 changed files with 28,356 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target
docs
artwork
README.md
LICENSE
contrib
22 changes: 22 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# These are backup files generated by rustfmt
**/*.rs.bk


# Added by cargo

target


daemon-config.toml
web-config.toml

.env
Loading

0 comments on commit 7dbcdd3

Please sign in to comment.