Skip to content

release: finalize v0.1.0 metadata #8

release: finalize v0.1.0 metadata

release: finalize v0.1.0 metadata #8

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
skills/math-glossary/requirements.txt
skills/math-glossary/requirements-ai.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install \
-r skills/math-glossary/requirements.txt \
-r skills/math-glossary/requirements-ai.txt
- name: Test repository shape
run: python -m unittest discover -s tests -v
- name: Test math-glossary
run: python -m unittest discover -s skills/math-glossary/tests -v