Skip to content

Commit 465a740

Browse files
committed
one action
1 parent d55733a commit 465a740

File tree

2 files changed

+12
-18
lines changed

2 files changed

+12
-18
lines changed

.github/workflows/reusable.yml

-15
This file was deleted.

.github/workflows/run.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
name: run examples
22

33
on:
4-
push
5-
# workflow_dispatch:
4+
push:
5+
workflow_dispatch:
66

77
jobs:
8+
install-kima:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.10'
15+
cache: 'pip' # caching pip dependencies
16+
- run: pip install -r requirements.txt
17+
818
run-example:
919
runs-on: ubuntu-latest
1020
steps:
11-
- uses: kima-org/run-examples/.github/workflows/reusable.yml@main
1221
- name: test
1322
run: |
1423
python -c "import kima"

0 commit comments

Comments
 (0)