Skip to content

chore: update rlm submodule with REPL hints for LLMs #47

chore: update rlm submodule with REPL hints for LLMs

chore: update rlm submodule with REPL hints for LLMs #47

Workflow file for this run

name: ci
on:
push:
pull_request:
schedule:
- cron: "0 6 * * 1"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Lint
run: |
ruff check src tests
- name: Typecheck
run: |
mypy src
- name: Tests
run: |
pytest
upstream-drift:
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
python -m pip install "rlm @ git+https://github.com/alexzhang13/rlm.git"
- name: Tests
run: |
pytest