feat!: make StructArray
generic over child array OffsetElement
and UnionType
#1234
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, pull_request] | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
rustdoc: | |
name: Rustdoc | |
runs-on: ubuntu-latest | |
env: | |
RUSTDOCFLAGS: -Dwarnings | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
id: rust-toolchain | |
- uses: dtolnay/install@cargo-docs-rs | |
- run: cargo docs-rs | |
- run: mv "target/$(rustc -vV | awk '/^host/ { print $2 }')/doc" "target/doc" | |
- run: chmod -c -R +rX "target/doc" | |
- run: echo "<meta http-equiv=refresh content=0;url=narrow>" > target/doc/index.html | |
- if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rustdoc | |
path: target/doc | |
- run: cargo docs-rs -p narrow-derive | |
deploy: | |
name: Deploy | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
needs: rustdoc | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }}/narrow | |
concurrency: | |
group: github-pages | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: rustdoc | |
- uses: actions/configure-pages@v5 | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: . | |
- uses: actions/deploy-pages@v4 | |
id: deployment |