added nullable: true to core #7
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: Build Docs | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build the Docker image | |
| run: docker build . --tag build-docs | |
| - name: Run the Docker image | |
| run: docker run -w /src -v ./Specification:/src/Specification -v ./build:/src/build build-docs ./Scripts/buildDocs.sh |