Remove outdated info about test gen from docs #45
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: Doc | |
| on: | |
| push: | |
| branches: | |
| - main | |
| # We need to manually run the workflow for debugging purposes. | |
| workflow_dispatch: | |
| jobs: | |
| Generate-doc: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install NET 6 | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: '6.0.201' | |
| - name: Install Docfx | |
| run: nuget install docfx.console -Version 2.59.3 | |
| working-directory: doc | |
| - name: Build the solution | |
| run: dotnet build src/ | |
| - name: Generate the documentation | |
| run: doc/docfx.console.2.59.3/tools/docfx.exe doc/source/docfx.json | |
| - name: Deploy to gh-pages 🚀 | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: doc/build |