Add profiles/README.md anchor, disable GitHub Actions CI #4
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
| # Workwarrior Tests — DISABLED | |
| # | |
| # CI is not currently used. Tests are run locally via: | |
| # bats tests/ | |
| # python3 -m pytest services/browser/ | |
| # | |
| # This file is kept as a placeholder. To re-enable, uncomment the workflow below | |
| # and ensure test helpers (bats-support, bats-assert) are properly installed | |
| # in the CI environment. | |
| # | |
| # Previously this ran sync engine tests on Ubuntu and macOS, plus a full BATS | |
| # suite. The Ubuntu runner failed due to missing bats-support/bats-assert | |
| # libraries (local stubs don't work in CI). | |
| # | |
| # To re-enable: | |
| # 1. Install bats-support and bats-assert as git submodules or npm packages | |
| # 2. Ensure all test dependencies are available (task, timew, jq, gh) | |
| # 3. Uncomment the workflow definition below | |
| # name: Workwarrior Tests | |
| # on: | |
| # push: | |
| # branches: [master] | |
| # pull_request: | |
| # branches: [master] | |
| # jobs: ... |