feat(generators): add support for read-only properties (#39) #5
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 | |
| on: | |
| # Disabled automatic builds until implementation is complete | |
| # Can still be triggered manually via workflow_dispatch | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - beta | |
| - release/* | |
| tags: | |
| - v* | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - 'ROADMAP.md' | |
| - 'mkdocs.yml' | |
| - 'requirements.txt' | |
| permissions: write-all | |
| jobs: | |
| build: | |
| uses: LayeredCraft/devops-templates/.github/workflows/package-build.yaml@v6.2 | |
| with: | |
| hasTests: true | |
| useMtpRunner: true | |
| testDirectory: "test" | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| 10.0.x | |
| secrets: inherit |