zero-copy double & string deserialization for .net6+ #8
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 | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build documentation site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Pull code | |
uses: actions/checkout@v3 | |
- name: Use Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11.x | |
- name: Install dependencies | |
run: pip install mkdocs=='1.4.2' mkdocs-material=='9.0.1' | |
- name: Build site | |
run: mkdocs build --site-dir "$RUNNER_TEMP/site" | |
- name: Set up GitHub Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload generated docs | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: ${{ runner.temp }}/site | |
deploy: | |
name: Deploy documentation site | |
environment: | |
name: GitHub Pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
if: github.ref == 'refs/heads/main' | |
needs: build | |
permissions: | |
id-token: write | |
pages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 |