Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
j-faria committed Mar 1, 2024
1 parent 5aa3cb4 commit b36c005
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,20 @@ on:

jobs:
install:
uses: kima-org/run-examples/.github/workflows/reusable.yml@main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt

run-example:
needs: install
runs-on: ubuntu-latest
steps:
- name: run
- name: test
run: |
python -c "import kima"
python -c "import kima"

0 comments on commit b36c005

Please sign in to comment.