|
| 1 | +name: CI |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + push: |
| 6 | + tags: |
| 7 | + - "*" |
| 8 | + branches: |
| 9 | + - main |
| 10 | + |
| 11 | +env: |
| 12 | + MAIN_PYTHON_VERSION: '3.7' |
| 13 | + |
| 14 | +concurrency: |
| 15 | + group: ${{ github.workflow }}-${{ github.ref }} |
| 16 | + cancel-in-progress: true |
| 17 | + |
| 18 | +jobs: |
| 19 | + |
| 20 | + style: |
| 21 | + name: Code style |
| 22 | + runs-on: ubuntu-latest |
| 23 | + steps: |
| 24 | + - uses: actions/checkout@v3 |
| 25 | + - name: Set up Python |
| 26 | + uses: actions/setup-python@v4 |
| 27 | + with: |
| 28 | + python-version: ${{ env.MAIN_PYTHON_VERSION }} |
| 29 | + - name: Install dependencies |
| 30 | + run: | |
| 31 | + python -m pip install --upgrade pip tox |
| 32 | + - name: Test with tox |
| 33 | + run: tox -e style |
| 34 | + |
| 35 | + docs-style: |
| 36 | + name: Documentation Style Check |
| 37 | + runs-on: ubuntu-latest |
| 38 | + steps: |
| 39 | + - uses: actions/checkout@v3 |
| 40 | + |
| 41 | + - name: Running Vale |
| 42 | + uses: errata-ai/vale-action@reviewdog |
| 43 | + env: |
| 44 | + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
| 45 | + with: |
| 46 | + files: doc |
| 47 | + reporter: github-pr-check |
| 48 | + level: error |
| 49 | + filter_mode: nofilter |
| 50 | + fail_on_error: true |
| 51 | + vale_flags: "--config=doc/.vale.ini" |
| 52 | + |
| 53 | + docs: |
| 54 | + name: Documentation |
| 55 | + needs: [style, docs-style] |
| 56 | + runs-on: ubuntu-latest |
| 57 | + steps: |
| 58 | + - uses: actions/checkout@v3 |
| 59 | + |
| 60 | + - name: Set up Python |
| 61 | + uses: actions/setup-python@v4 |
| 62 | + with: |
| 63 | + python-version: ${{ env.MAIN_PYTHON_VERSION }} |
| 64 | + |
| 65 | + - name: Install system dependencies |
| 66 | + run: | |
| 67 | + sudo apt-get update |
| 68 | + sudo apt-get install -y texlive-latex-extra latexmk nodejs npm graphviz |
| 69 | + npm install -g @mermaid-js/mermaid-cli |
| 70 | +
|
| 71 | + - name: Install Python dependencies |
| 72 | + run: | |
| 73 | + python -m pip install --upgrade pip tox |
| 74 | +
|
| 75 | + - name: Build HTML documentation |
| 76 | + run: tox -e doc |
| 77 | + |
| 78 | + - name: Build PDF Documentation |
| 79 | + run: | |
| 80 | + sudo apt update |
| 81 | + sudo apt-get install -y texlive-latex-extra latexmk |
| 82 | + python -m pip install -r requirements/requirements_doc.txt |
| 83 | + make -C doc pdf |
| 84 | +
|
| 85 | + - name: Upload HTML documentation |
| 86 | + |
| 87 | + with: |
| 88 | + name: HTML-Documentation |
| 89 | + path: .tox/doc_out_html/ |
| 90 | + retention-days: 7 |
| 91 | + |
| 92 | + - name: Upload PDF Documentation |
| 93 | + |
| 94 | + with: |
| 95 | + name: PDF-Documentation |
| 96 | + path: doc/build/latex/*.pdf |
| 97 | + retention-days: 7 |
| 98 | + |
| 99 | + - name: Deploy to gh-pages |
| 100 | + if: github.event_name == 'push' |
| 101 | + |
| 102 | + with: |
| 103 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 104 | + BRANCH: gh-pages |
| 105 | + FOLDER: .tox/doc_out_html/ |
| 106 | + CLEAN: true |
| 107 | + SINGLE_COMMIT: true |
| 108 | + |
| 109 | + release: |
| 110 | + if: github.event_name == 'push' && contains(github.ref, 'refs/tags') |
| 111 | + needs: [style, docs-style, docs] |
| 112 | + runs-on: ubuntu-latest |
| 113 | + steps: |
| 114 | + - uses: actions/checkout@v3 |
| 115 | + |
| 116 | + - uses: actions/download-artifact@v3 |
| 117 | + |
| 118 | + - name: Display structure of downloaded files |
| 119 | + run: ls -R |
| 120 | + |
| 121 | + - name: Release |
| 122 | + uses: softprops/action-gh-release@v1 |
| 123 | + with: |
| 124 | + generate_release_notes: true |
| 125 | + files: | |
| 126 | + ./*PDF*/*.pdf |
0 commit comments