Merge pull request #15 from akunzai/refactor-memory-skill #2
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 git-sync-memory | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test-git-sync-memory: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Run git-sync-memory integration tests | |
| run: bash tests/git-sync-memory-integration.sh | |
| - name: Run git-sync-memory branch derivation tests | |
| run: bash tests/git-sync-memory-branch.sh | |
| - name: Run memory content checks | |
| run: bash tests/memory-content.sh |