Skip to content

Commit

Permalink
Merge branch 'main' into testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
AurelienFT committed Oct 31, 2022
2 parents 894ca0f + 59e9ff9 commit 842d3ee
Show file tree
Hide file tree
Showing 179 changed files with 4,924 additions and 7,069 deletions.
10 changes: 0 additions & 10 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md

This file was deleted.

7 changes: 7 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* [ ] document all added functions
* [ ] try in sandbox /simulation/labnet
* [ ] unit tests on the added/changed features
* [ ] make tests compile
* [ ] make tests pass
* [ ] add logs allowing easy debugging in case the changes caused problems
* [ ] if the API has changed, update the API specification
21 changes: 13 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@ jobs:
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: install
args: cargo-spellcheck
- uses: actions-rs/cargo@v1
with:
command: spellcheck
args: -m 1

check:
if: github.ref != 'refs/heads/staging'
Expand Down Expand Up @@ -119,6 +111,8 @@ jobs:
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: -- -A clippy::uninlined-format-args


# Full cross-platform tests required by bors to merge on main branch
full:
Expand Down Expand Up @@ -210,3 +204,14 @@ jobs:
with:
branch: gh-pages
folder: target/doc

unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: setup_tests
shell: bash
run: |
cargo install cargo-script && cargo script tools/setup_test.rs && git diff --no-ext-diff --quiet
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ docs/_build
massa.iml
ledger
docs/venv
# tools
massa_unit_tests_*.tar.gz
extract_massa_unit_tests_src_*
19 changes: 16 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"massa-cipher",
"massa-consensus-exports",
"massa-consensus-worker",
"massa-executed-ops",
"massa-execution-exports",
"massa-execution-worker",
"massa-factory-exports",
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mass adoption.
[![Bors enabled](https://bors.tech/images/badge_small.svg)](https://app.bors.tech/repositories/39543)
[![Coverage Status](https://coveralls.io/repos/github/massalabs/massa/badge.svg?branch=main)](https://coveralls.io/github/massalabs/massa?branch=main)
[![Docs](https://img.shields.io/static/v1?label=docs&message=massa&color=blue)](https://massalabs.github.io/massa/massa_node/)
[![OpenRPC Playground](https://img.shields.io/static/v1?label=openrpc-playground&message=massa&color=blue)](https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/massalabs/massa/main/docs/technical-doc/openrpc.json)
[![OpenRPC Playground](https://img.shields.io/static/v1?label=explore-openrpc-specification&message=massa&color=blue)](https://playground.open-rpc.org/?schemaUrl=https://test.massa.net/api/v2&uiSchema\[appBar\]\[ui:input\]=false&uiSchema\[appBar\]\[ui:inputPlaceholder\]=Enter+Massa+JSON-RPC+server+URL&uiSchema\[appBar\]\[ui:logoUrl\]=https://massa.net/favicons/favicon.ico&uiSchema\[appBar\]\[ui:splitView\]=false&uiSchema\[appBar\]\[ui:darkMode\]=false&uiSchema\[appBar\]\[ui:title\]=Massa&uiSchema\[appBar\]\[ui:examplesDropdown\]=false&uiSchema\[methods\]\[ui:defaultExpanded\]=false&uiSchema\[methods\]\[ui:methodPlugins\]=true&uiSchema\[params\]\[ui:defaultExpanded\]=false)
[![Open in Gitpod](https://shields.io/badge/Gitpod-contribute-brightgreen?logo=gitpod&style=flat)](https://gitpod.io/#https://github.com/massalabs/massa)

## Introduction
Expand All @@ -25,6 +25,9 @@ An easy-to-read blog post introduction with videos is written
We are now releasing the **Massa testnet** in this GitHub repository,
with its explorer available at <https://massa.net/testnet>.

You can interact with Massa JSON-RPC public API on [OpenRPC Playground](https://playground.open-rpc.org/?schemaUrl=https://test.massa.net/api/v2&uiSchema\[appBar\]\[ui:input\]=false&uiSchema\[appBar\]\[ui:inputPlaceholder\]=Enter+Massa+JSON-RPC+server+URL&uiSchema\[appBar\]\[ui:logoUrl\]=https://massa.net/favicons/favicon.ico&uiSchema\[appBar\]\[ui:splitView\]=false&uiSchema\[appBar\]\[ui:darkMode\]=false&uiSchema\[appBar\]\[ui:title\]=Massa&uiSchema\[appBar\]\[ui:examplesDropdown\]=false&uiSchema\[methods\]\[ui:defaultExpanded\]=false&uiSchema\[methods\]\[ui:methodPlugins\]=true&uiSchema\[params\]\[ui:defaultExpanded\]=false)which is an equivalent of SwaggerUI for OpenAPI specifications.


## Testnet Incentives

As decentralization is our core value, we would like to help you start
Expand Down
20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

21 changes: 0 additions & 21 deletions docs/README.md

This file was deleted.

4 changes: 0 additions & 4 deletions docs/_static/css/custom.css

This file was deleted.

73 changes: 0 additions & 73 deletions docs/conf.py

This file was deleted.

24 changes: 0 additions & 24 deletions docs/decentralized-web/browser-plugin.rst

This file was deleted.

37 changes: 0 additions & 37 deletions docs/decentralized-web/decentralized-web.rst

This file was deleted.

Loading

0 comments on commit 842d3ee

Please sign in to comment.