Skip to content

Update 12-nucleisdk-0.5.0-dhrystone-score-lower-than-expected-in-IDE.md #29

Update 12-nucleisdk-0.5.0-dhrystone-score-lower-than-expected-in-IDE.md

Update 12-nucleisdk-0.5.0-dhrystone-score-lower-than-expected-in-IDE.md #29

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install mkdocs mkdocs-material pymdown-extensions
- name: Prepare docs
run: |
bash .github/prepare_doc.sh
- name: Build MkDocs
run: mkdocs build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
branch: gh-pages
folder: ./site