Account for ptrData in sm64_extra #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
branches: [main] | |
jobs: | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: default | |
override: true | |
- uses: Swatinem/rust-cache@v1 | |
- run: cargo doc --no-deps --all-features | |
- uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: target/doc | |
target-folder: docs/dev |