Add support for Process.fork within an active scheduler.
#45
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: Test Agent Context | |
| on: | |
| push: | |
| paths: | |
| - 'context/**' | |
| - 'test/.agent/**' | |
| pull_request: | |
| paths: | |
| - 'context/**' | |
| - 'test/.agent/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Agent Context | |
| runs-on: ubuntu-latest | |
| services: | |
| ollama: | |
| image: ollama/ollama | |
| ports: | |
| - 11434:11434 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.4" | |
| bundler-cache: true | |
| - name: Pull Model | |
| run: bundle exec bake async:ollama:pull | |
| - name: Run tests | |
| timeout-minutes: 30 | |
| run: bundle exec sus test/.agent/context |