sui-http 0.2.0

HTTP server and utils used by many sui services
Documentation
name: rustdoc

on:
  push:
    branches: [ main ]
  workflow_dispatch:

env:
  RUSTFLAGS: -D warnings

jobs:
  rustdoc:
    runs-on: ubuntu-latest
    permissions:
      contents: write

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: rustdoc
        run: make doc

      - name: Deploy Docs
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_branch: gh-pages
          publish_dir: ./target/doc
          force_orphan: true