Add performance tests to show that UseDummyValuesInsteadOfExceptions … #12
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: Documentation | |
on: | |
push: | |
branches-ignore: | |
- gh-pages | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Setup .NET | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore Packages | |
run: | | |
dotnet restore src/MolangSharp/MolangSharp.csproj | |
- name: Build | |
run: | | |
dotnet build --configuration Release --no-restore src/MolangSharp/MolangSharp.csproj | |
- name: Build Documentation | |
uses: nikeee/docfx-action@master | |
with: | |
args: docs/docfx.json | |
- name: Publish Documentation on GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_site |