adds unsupported procs/vars #153
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: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-build: | |
| name: Test Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| - name: Install dependencies | |
| uses: bahmutov/npm-install@v1 | |
| - name: Install Zora | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: [email protected] | |
| - name: Build project | |
| run: ZOLA_ENV=dev zola build | |
| test-oddt: | |
| name: Test Documentation Tool | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.0.100 | |
| - name: Test Documentation Tool | |
| run: | | |
| cd tools/OpenDreamDocumentationTool | |
| git submodule update --init --recursive | |
| dotnet run --project OpenDreamDocumentationTool/OpenDreamDocumentationTool.csproj -- --documentation=../.. --standard=OpenDream/DMCompiler/DMStandard |