Skip to content

one action

one action #20

Workflow file for this run

name: run examples
on:
push:
workflow_dispatch:
jobs:
install-kima:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
run-example:
runs-on: ubuntu-latest
steps:
- name: test
run: |
python -c "import kima"