Skip to content

Add update notifications and rename repo references (v1.6.5) #26

Add update notifications and rename repo references (v1.6.5)

Add update notifications and rename repo references (v1.6.5) #26

Workflow file for this run

name: Test Code Snippets
on:
push:
branches:
- main
paths:
- 'SKILL.md'
- 'references/**'
- 'tests/**'
- '.github/workflows/test-snippets.yml'
pull_request:
paths:
- 'SKILL.md'
- 'references/**'
- 'tests/**'
- '.github/workflows/test-snippets.yml'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Cache idc-index data
uses: actions/cache@v5
with:
path: ~/.idc
key: idc-index-0.11.14
- name: Install test dependencies
run: pip install -r tests/requirements-test.txt
- name: Run snippet tests
run: pytest tests/test_snippets.py -v --timeout=300