Fix modified no updating #10
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: Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| name: Run Test Suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Lua | |
| uses: leafo/gh-actions-lua@v10 | |
| with: | |
| luaVersion: "5.1" | |
| - name: Run tests | |
| run: | | |
| echo "🧪 Running notes.nvim test suite..." | |
| lua tests/run_tests.lua | |
| - name: Test results | |
| if: success() | |
| run: | | |
| echo "✅ All tests passed! Ready to merge." | |
| - name: Test failures | |
| if: failure() | |
| run: | | |
| echo "❌ Tests failed. Please fix before merging." | |
| exit 1 |