diff --git a/.github/codecov.yml b/.github/codecov.yml deleted file mode 100644 index f3070d457..000000000 --- a/.github/codecov.yml +++ /dev/null @@ -1,17 +0,0 @@ -coverage: - status: - project: - default: - target: 50% - threshold: 1% - patch: - default: - target: 50% - threshold: 1% - informational: true - ignore: - - "arbiter-core/contracts/*" - - "arbiter/arbiter-core/benches*" - - "arbiter/arbiter-core/src/bindings" - - "arbiter/arbiter-bindings/*" - diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 12237c821..34e1674c6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -21,27 +21,3 @@ jobs: - name: test run: cargo test --workspace --all-features --exclude documentation - - codecov: - name: codecov - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: install rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - - name: install cargo-llvm-cov - uses: taiki-e/install-action@cargo-llvm-cov - - - name: codecov - run: cargo llvm-cov --all-features --workspace --exclude documentation --lcov --output-path lcov.info - - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - with: - files: lcov.info - fail_ci_if_error: true diff --git a/README.md b/README.md index bf5fd70f6..362a11445 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ > Expanding the EVM tooling ecosystem. ![Github Actions](https://github.com/primitivefinance/arbiter/workflows/test/badge.svg) -[![Codecov badge](https://codecov.io/gh/primitivefinance/arbiter/branch/main/graph/badge.svg?token=UQ1SE0D9IN)](https://codecov.io/gh/primitivefinance/arbiter) ![Visitors badge](https://visitor-badge.laobi.icu/badge?page_id=arbiter) ![Telegram badge](https://img.shields.io/endpoint?color=neon&logo=telegram&label=chat&style=flat-square&url=https%3A%2F%2Ftg.sumanjay.workers.dev%2Farbiter_rs) [![Twitter Badge](https://badgen.net/badge/icon/twitter?icon=twitter&label)](https://twitter.com/primitivefi) diff --git a/documentation/src/usage/index.md b/documentation/src/usage/index.md index d789c6dd7..23ac7b5ec 100644 --- a/documentation/src/usage/index.md +++ b/documentation/src/usage/index.md @@ -5,7 +5,7 @@ Arbiter is broken into a number of crates that provide different levels of abstr The `arbiter-core` crate is the core of the Arbiter. It contains the `Environment` struct which acts as an EVM sandbox and the `RevmMiddleware` which gives a convenient interface for interacting with contracts deployed into the `Environment`. Direct usage of `arbiter-core` will be minimized as much as possible as it is intended for developers to mostly pull from the `arbiter-engine` crate in the future. -This crate provides the interface for agents to interact with an in memeory evm. +This crate provides the interface for agents to interact with an in memory evm. ## Arbiter Engine The `arbiter-engine` crate is the main interface for running simulations.