Skip to content

Commit

Permalink
chore(ci): add doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Aug 5, 2024
1 parent f6a3a5f commit c2de994
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,29 @@ jobs:
name: virtiofs-opendal-docs
path: ./integrations/virtiofs/target/doc

build-parquet-opendal-doc:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: ./.github/actions/setup

- name: Setup Rust Nightly
run: |
rustup toolchain install ${{ env.RUST_DOC_TOOLCHAIN }}
- name: Build parquet-opendal doc
working-directory: "integrations/parquet"
run: cargo +${{ env.RUST_DOC_TOOLCHAIN }} doc --lib --no-deps --all-features

- name: Upload docs
uses: actions/upload-artifact@v3
with:
name: object-parquet-docs
path: ./integrations/parquet/target/doc

build-website:
runs-on: ubuntu-latest
needs:
Expand All @@ -423,6 +446,7 @@ jobs:
- build-fuse3-opendal-doc
- build-unftp-sbe-opendal-doc
- build-virtiofs-opendal-doc
- build-parquet-opendal-doc

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c2de994

Please sign in to comment.