diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 935470f..4e848a2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,9 +20,6 @@ jobs: - name: Check formatting run: cargo fmt --all -- --check - # - name: Clippy - # run: cargo clippy -- -D warnings - - name: Run tests run: cargo test --verbose diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a532f2b..5766c69 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -59,6 +59,13 @@ jobs: uses: actions/checkout@v4 with: ref: release + - name: Generate Docs + run: cargo doc --no-deps --document-private-items + - name: Add index.html + run: | + echo '' > target/doc/index.html + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 - name: Setup Rust uses: dtolnay/rust-toolchain@stable - name: Configure cache