Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

fix: properly parse pure renames in git diffs (#4) #3

fix: properly parse pure renames in git diffs (#4)

fix: properly parse pure renames in git diffs (#4) #3

Workflow file for this run

name: rustdoc
on:
push:
branches: [ master ]
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: -D warnings
jobs:
rustdoc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build Documentation
run: cargo doc --no-deps
- 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