Skip to content

Commit 5559078

Browse files
authored
Merge pull request #7 from public-awesome/fair-burn-contract-docs
Improve crate docs for fair burn contract
2 parents 51a9418 + 29a4a86 commit 5559078

32 files changed

+2616
-263
lines changed

.cargo/config

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
wasm = "build --lib --release --target wasm32-unknown-unknown"
33
wasm-debug = "build --target wasm32-unknown-unknown"
44
unit-test = "test --lib -- --nocapture"
5-
lint = "clippy -- -D warnings"
5+
lint = "clippy -- -D warnings"
6+
e2e-test = "test --package e2e-tests -- --nocapture --ignored --test-threads 1 -Z unstable-options --report-time"

.github/workflows/basic.yml

+6
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@ jobs:
6363
override: true
6464
components: rustfmt, clippy
6565

66+
- name: Run cargo doc
67+
uses: actions-rs/cargo@v1
68+
with:
69+
command: doc
70+
args: -F library
71+
6672
- name: Run cargo fmt
6773
uses: actions-rs/cargo@v1
6874
with:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Build results
22
/target
33
/schema
4+
/artifacts
45

56
# Cargo+Git helper file (https://github.com/rust-lang/cargo/blob/0.44.1/src/cargo/sources/git/utils.rs#L320-L327)
67
.cargo-ok

0 commit comments

Comments
 (0)