Oneapi #36
Workflow file for this run
This file contains hidden or 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 | |
| tags: | |
| - 'v*' | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install BLAS and LAPACK | |
| run: sudo apt-get update && sudo apt-get install -y libblas-dev liblapack-dev gfortran | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - uses: compas-dev/compas-actions.docs@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| doc_url: https://BlockResearchGroup.github.io/compas_lmgc90 |