Skip to content

Commit

Permalink
ci: add doc CI (gakonst#1813)
Browse files Browse the repository at this point in the history
* ci: add docs ci

* ci: use checkout v3
  • Loading branch information
DaniPopes authored and hexiaoyuan committed Nov 9, 2022
1 parent fec9375 commit 296de5f
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install Anvil
uses: foundry-rs/foundry-toolchain@v1
with:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
# TODO: can we combine these shared steps in github actions?
- name: Install Anvil
uses: foundry-rs/foundry-toolchain@v1
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -123,13 +123,33 @@ jobs:
- name: cargo clippy
run: cargo +nightly clippy --all-features -- -D warnings

docs:
name: docs
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: cargo doc
run: cargo +nightly doc --lib --all-features
env:
RUSTFLAGS: --cfg docsrs
RUSTDOCFLAGS: --cfg docsrs -Dwarnings

wasm:
name: WASM
runs-on: ubuntu-latest

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -176,7 +196,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install geth (for state overrides example)
run: |
Expand Down Expand Up @@ -261,7 +281,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Run build
- name: Install Rustup using win.rustup.rs
Expand Down

0 comments on commit 296de5f

Please sign in to comment.