Skip to content

Commit

Permalink
Merge pull request #9 from small-thinking/add-core-concept
Browse files Browse the repository at this point in the history
Add message, action, and tool
  • Loading branch information
yxjiang authored Mar 10, 2024
2 parents 402f183 + 5cd09ea commit f482769
Show file tree
Hide file tree
Showing 12 changed files with 413 additions and 14 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Run Tests

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'

- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
pip install -r requirements.txt
- name: Install dependencies
run: |
poetry install
- name: Install pytest
run: |
pip install pytest
- name: Run Pytest
run: poetry run pytest
Loading

0 comments on commit f482769

Please sign in to comment.