|
| 1 | +## Description |
| 2 | + |
| 3 | +<!-- Provide a clear and concise description of what this PR does --> |
| 4 | + |
| 5 | +## Type of Change |
| 6 | + |
| 7 | +<!-- Mark the relevant option with an 'x' --> |
| 8 | + |
| 9 | +- [ ] Bug fix (non-breaking change that fixes an issue) |
| 10 | +- [ ] New feature (non-breaking change that adds functionality) |
| 11 | +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 12 | +- [ ] Documentation update |
| 13 | +- [ ] Performance improvement |
| 14 | +- [ ] Code refactoring |
| 15 | +- [ ] Test addition/improvement |
| 16 | +- [ ] Build/CI improvement |
| 17 | + |
| 18 | +## Related Issues |
| 19 | + |
| 20 | +<!-- Link to related issues: Fixes #123, Closes #456, Related to #789 --> |
| 21 | + |
| 22 | +## Changes Made |
| 23 | + |
| 24 | +<!-- List the specific changes you made --> |
| 25 | + |
| 26 | +- |
| 27 | +- |
| 28 | +- |
| 29 | + |
| 30 | +## Testing |
| 31 | + |
| 32 | +<!-- Describe the tests you ran and how to reproduce them --> |
| 33 | + |
| 34 | +### Test Environment |
| 35 | + |
| 36 | +- **OS**: |
| 37 | +- **Compiler**: |
| 38 | +- **CMake Version**: |
| 39 | + |
| 40 | +### Test Commands |
| 41 | + |
| 42 | +```bash |
| 43 | +# Build |
| 44 | +cmake -S . -B build |
| 45 | +cmake --build build -j |
| 46 | + |
| 47 | +# Run tests |
| 48 | +cd build |
| 49 | +ctest --output-on-failure |
| 50 | + |
| 51 | +# Manual testing (if applicable) |
| 52 | +./build/gravity run examples/your_test.gravity |
| 53 | +``` |
| 54 | + |
| 55 | +### Test Results |
| 56 | + |
| 57 | +<!-- Paste relevant test output or screenshots --> |
| 58 | + |
| 59 | +``` |
| 60 | +# Test output here |
| 61 | +``` |
| 62 | + |
| 63 | +## Checklist |
| 64 | + |
| 65 | +<!-- Mark completed items with an 'x' --> |
| 66 | + |
| 67 | +- [ ] My code follows the project's coding standards |
| 68 | +- [ ] I have performed a self-review of my code |
| 69 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 70 | +- [ ] I have updated the documentation accordingly |
| 71 | +- [ ] My changes generate no new warnings |
| 72 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 73 | +- [ ] New and existing unit tests pass locally with my changes |
| 74 | +- [ ] Any dependent changes have been merged and published |
| 75 | + |
| 76 | +## DSL Changes (if applicable) |
| 77 | + |
| 78 | +<!-- If you've changed the .gravity DSL syntax, provide examples --> |
| 79 | + |
| 80 | +### Before |
| 81 | + |
| 82 | +```gravity |
| 83 | +# Old syntax |
| 84 | +``` |
| 85 | + |
| 86 | +### After |
| 87 | + |
| 88 | +```gravity |
| 89 | +# New syntax |
| 90 | +``` |
| 91 | + |
| 92 | +## Breaking Changes |
| 93 | + |
| 94 | +<!-- If this PR introduces breaking changes, describe them and provide migration instructions --> |
| 95 | + |
| 96 | +## Additional Notes |
| 97 | + |
| 98 | +<!-- Any additional information that reviewers should know --> |
| 99 | + |
| 100 | +## Screenshots (if applicable) |
| 101 | + |
| 102 | +<!-- Add screenshots, plots, or animations showing the changes in action --> |
0 commit comments