Skip to content

Commit

Permalink
feat(ergo): add address generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Alesfatalis committed Oct 24, 2024
1 parent f1e8a2c commit 8addd5f
Show file tree
Hide file tree
Showing 55 changed files with 4,285 additions and 366 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rust-ergo-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
pull_request:
paths:
- rust/apps/ergo/**

name: ERGO Checks

jobs:
UnitTest:
name: Unit Test And Code coverage
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-12-01
override: true
components: rustfmt
target: x86_64-apple-darwin

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov

- name: Run rust/apps/ergo
run: cd rust/apps/ergo && cargo +nightly-2023-12-01 llvm-cov --fail-under-functions 50 --fail-under-lines 50 --fail-under-regions 50
Binary file added images/coin/coinErg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions rust/apps/ergo/.rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
indent_style="Block"
reorder_imports=true
binop_separator="Front"
Loading

0 comments on commit 8addd5f

Please sign in to comment.